IP属地:广东
独立子查询: select * from TblStudent where tSClassId = (select tClassId from ...
索引的目的:提高查询效率。 索引的分两种: 1.聚集索引(物理):一个表中只能有一个索引 2.非聚集索引(逻辑):一个表中可以有多个索引 使用索...
case的使用1:相当于C#中的if else 例子1: select *, 头衔=case when autoId = 1 then ...
最终效果: 前台代码: 后台代码
当使用图二中的写法定义SqlParamter时,会将0认为是个枚举变量,其写法等同于图二中的下一行。
int n = 10; string s = "hello"; //n = null; 编译器报错 //s = null; int? n1 = ...