摘要:
在类的成员变量(全局变量)中,DateTime的默认值为:0001-1-1 0:00:00注:局部变量必须赋值才能使用 继承于System.ValueType的全是值(Struct)类型的: System.ArgIterator System.Boolean System.Byte System.Char System.Collections.DictionaryEntry System.Coll... 阅读全文
摘要:
如果想查找“_cs”结尾的的账户select * from [user] where loginname like '%_cs'是不行的,_ 被认为是任意的字符,所以需要转义字符,有两种写法:select * from [user] where loginname like '%[_]cs'select * from [user] where loginname like ... 阅读全文
摘要:
SQL 的转义字符是:'(单引号)例:select * from tbl where uyear='''06'请注意其中红色背景的单引号,它即表示转义字符,如果我们省略,则整个语句会出错,转义字符不会输出,上例中 uyear 的实际条件值为 '06,而不是 ''06为什么不能省略呢,假如我们省略,上句变成:select * from tbl where uyear=''06'由于在 SQL 中单引... 阅读全文