
Sql
coollzt
这个作者很懒,什么都没留下…
展开
-
Sql Server 常用日期格式转换
SQL Server中文版的默认的日期字段datetime格式是yyyy-mm-dd Thh:mm:ss.mmm 例如: select getdate() 2004-09-12 11:06:08.177 整理了一下SQL Server里面可能经常会用到的日期格式转换方法: 举例如下: select CONVERT(varchar, getdate()转载 2012-02-09 13:27:02 · 310 阅读 · 0 评论 -
SQL判断
--判断数据库是否存在 if exists(select * from master..sysdatabases where name=N '库名 ') print 'exists ' else print 'not exists ' --------------- -- 判断要创建的表名是否存在 if e转载 2012-02-09 14:10:17 · 340 阅读 · 0 评论