有两种方式:
lsp_columns 表名;
lsp_help 表名;
第一种查看的形式:
第二种查看的形式:
会显示多个sql结果窗口,分别对应表信息,字段信息,identity信息,rowguidcol信息,data_located_on_filegroup,index信息,constraint信息
在
这个界面的选项中一定要选择覆盖现有数据库,否则可能报“备份集中的数据库备份与现有的数据库不同”这个错误
l获取年月日(yyyy-MM-dd)
CONVERT(VARCHAR(10),日期字段,120)
l获取年月日(yyyyMMdd)
CONVERT(VARCHAR(12),time_bzrq,112)
l20040912110608
selectreplace(replace(replace(CONVERT(varchar, getdate(), 120 ),'-',''),'',''),':','')
l2004/09/12
select CONVERT(varchar(12) , getdate(),111 )
l2004.09.12
select CONVERT(varchar(12) , getdate(),102 )
其它我不常用的日期格式转换方法:
select CONVERT(varchar(12) , getdate(), 101 )
09/12/2004
select CONVERT(varchar(12) , getdate(), 103 )
12/09/2004
select CONVERT(varchar(12) , getdate(), 104 )
12.09.2004
selectCONVERT(varchar(12) , getdate(), 105 )
12-09-2004
select CONVERT(varchar(12) , getdate(), 106 )
12 09 2004
select CONVERT(varchar(12) , getdate(), 107 )
09 12, 2004
select CONVERT(varchar(12) , getdate(), 108 )
11:06:08
select CONVERT(varchar(12) , getdate(), 109 )
09 12 2004 1
select CONVERT(varchar(12) , getdate(), 110 )
09-12-2004
select CONVERT(varchar(12) , getdate(), 113 )
12 09 2004 1
select CONVERT(varchar(12) , getdate(), 114 )
11:06:08.177
select customer from table1 whereconvert(varchar(10),worktime,120)=convert(varchar(10),DateAdd(day, -1,getdate()),120);
selectconvert(varchar(10),DateAdd(day,-1,getdate()),120)from ams_sys_oprlog;
Year(字段名称)
月日等同样
row_number()over(orderby UseriD)as rowNum