1、Select into from 与 Insert into from 的区别
select * into b from a 中,表b必须是未建立的表,此语句复制A表结构和数据到B表中。例如:
select uid,uname,email,regtime into userinfo from F_users where regtime='2011-12-28'
Insert int B(字段) select 字段 from A 中,表B必须是已经建立的表,此语句只是单纯的拷贝A的数据到B表中。例如:
insert into userinfo(userid,username,email,regtime) select uid,uname,email,regtime from F_users
2、如何通过T-SQL查看一个数据库的基本信息,如数据库名,数据库创建时间等(数据库名:test)
select * from sys.databases where name='test'