sqlserver 中如何将几张表联查出来的结果 用新的表保存下来
临时表,视图
select t.*,a.* into newtable from table1 t,table2 a where a.id=t.id
sqlserver直接把结果into进新表就行。
存到视图里面
当时我就震惊了!