摘要: 1、 关系R和S交操作对应的SQL语句: Select * from R INTERSECT Select * from S 或 Select * from R where sname in(select sname from S) 2、 差操作对应的SQL语句: Select * from R E 阅读全文
posted @ 2021-06-14 12:13 Captain_Amazing 阅读(70) 评论(0) 推荐(0) 编辑
摘要: 2020/8/30 1、给字符串变量赋值时,如果字面值包含引号,需要使用转义序列,例如: myString = “\”myInteger\” is “; 又如\n是换行,\\则输出一个\。 2、可以使用using语句为名称空间提供一个别名:例如 using LT = LevelTwo; 3、可以使用 阅读全文
posted @ 2021-06-14 12:10 Captain_Amazing 阅读(81) 评论(0) 推荐(0) 编辑
摘要: 1 可以在main函数中插入以下代码在项目中插入基于服务的数据库 string dataDir = AppDomain.CurrentDomain.BaseDirectory; if (dataDir.EndsWith(@"\bin\Debug\") || dataDir.EndsWith(@"\b 阅读全文
posted @ 2021-06-14 11:58 Captain_Amazing 阅读(25) 评论(0) 推荐(0) 编辑