使用此语句时
select urn,GETDATE() from table1 where urn not in(select urn from table2)
日期格式为 2012 年 10 月 10 日下午 1:57。但是我希望它采用这种格式 20121010
有任何想法吗?
使用此语句时
select urn,GETDATE() from table1 where urn not in(select urn from table2)
日期格式为 2012 年 10 月 10 日下午 1:57。但是我希望它采用这种格式 20121010
有任何想法吗?
SELECT CONVERT(VARCHAR(8), GETDATE(), 112) AS [YYYYMMDD]
select urn, CONVERT(VARCHAR(8), GETDATE(), 112) as [YYYYMMDD] from table1 where urn not in(select urn from table2)
and also refer more format :
http://www.sql-server-helper.com/tips/date-formats.aspx