
SQL
JayPan2008
在校学生
展开
-
SQL 几种排序方法
转载 2011-09-07 16:20:54 · 2100 阅读 · 0 评论 -
总结C#保留小数位数
本文向大家介绍C#保留小数位,可能好多人还不了解C#保留小数位,没有关系,看完本文你肯定有不少收获,希望本文能教会你更多东西。1.简单的例子System.Globalization.NumberFormatInfo provider = new System.Globalization.NumberFormatInfo(); provider.NumberDecimalDigits转载 2011-10-26 18:16:27 · 10759 阅读 · 1 评论 -
SQL 将日期格式转换为常用字符串格式
SQL 将日期格式转换为常用字符串格式有一个非常强大的日期格式化函数Select CONVERT(varchar(100), GETDATE(), 0): 05 16 2006 10:57AMSelect CONVERT(varchar(100), GETDATE(), 1): 05/16/06Select CONVERT(varchar(100), GETDA转载 2011-11-21 11:10:40 · 1223 阅读 · 0 评论 -
like 模糊查询
select * from student where name like '%a%';='%[ao]%' []匹配其中任一字符select * from student where name like '%[a][o]%'; select * from student where name not like '%a%';select * from student where name原创 2012-08-13 11:14:40 · 773 阅读 · 0 评论