如果数据保存的对象表已经存在,
insert into 结果表(字段1, 字段2) select 字段1, 字段2 from 检索表 where ……
如果如果数据保存的对象表尚未建立,可以偷懒,直接
select 字段1, 字段2 into 结果表 from 检索表 where ……
系统会自动按字段1,字段2建立结果表,字段属性从检索表继承
SELECT TOP 10 * into newtable FROM [oldtable] Where UserID=1 Order By CreateTime Desc
上面语句你可以任意修改 ,已经是测试通过的
insert into [newtable]
select * from ....
select * from 表a as 表b