--把一个表中的数据转移到另一个表中
--方法一**
--insert into 新表 列名
--select 列名
--from 原表
--例**
insert into studnetAddress(StudentNo,phone,[Address],Email)
select StudentNo,phone,[Address],Email
select * from studnetAddress
--方法二**
--select 原列名
--into 新表名
select StudentNo,phone,[Address],Email
into studnetAddress
from Student
--批量插入
insert into 表名(列名)
select 列值 union
select 列值
--update修改操作
update 表名 set 列名=新值,列名=新值...
where 列名=原值
--delete删除操作(系统会先查询后执行删除操作)
delete from 表名 where 列名=条件
--truncate table 表名 ==》等同于delete from 表名 +标识列重新生成
truncate table 表名
--方法一**
--insert into 新表 列名
--select 列名
--from 原表
--例**
insert into studnetAddress(StudentNo,phone,[Address],Email)
select StudentNo,phone,[Address],Email
from Student
--审查表数据select * from studnetAddress
--方法二**
--select 原列名
--into 新表名
--from原表
--例**select StudentNo,phone,[Address],Email
into studnetAddress
from Student
--批量插入
insert into 表名(列名)
select 列值 union
select 列值
--update修改操作
update 表名 set 列名=新值,列名=新值...
where 列名=原值
--delete删除操作(系统会先查询后执行删除操作)
delete from 表名 where 列名=条件
--truncate table 表名 ==》等同于delete from 表名 +标识列重新生成
truncate table 表名