sql server从表到表——复制,备份

复制student 到stu

select * into stu from student

select * into stu1 from(select * from stu) t

select * from student 

select * fromo stu

select * fromo stu1

原文地址:https://www.cnblogs.com/xxml/p/5761370.html