摘要:
GetDate()获得的日期由两部分组成,分别是今天的日期和当时的时间(yyyy-mm-dd hh:mi:ss: mmm) 1 使用Convert()函数: select convert(char(10),GetDate(),120) as Date * 第3个参数就是用来设置日期类型数据的显示样式 阅读全文
摘要:
1.INSERT INTO SELECT语句 语句形式为:Insert into Table2(field1,field2,...) select value1,value2,... from Table1 或者:Insert into Table2 select * from Table1 注意: 阅读全文