标签:drop alt rom from -- course 修改表 add rop
一、exec sp_rename ‘student.name‘,‘names‘ --修改表字段名称
alter table student alter column courseid int--修改表的字段类型
alter table student add age int --z增加字段
alter table student drop column age--删除字段
二、exitst的用法
select * from 表A where exists(select * from 表B where 表B.id=表A.id)
这句相当于
select * from 表A where id in (select id from 表B)
三、数据优化
https://zhuanlan.zhihu.com/p/65058992
sql修改字段名称,增加字段,更改类型,删除字段 和数据优化
标签:drop alt rom from -- course 修改表 add rop
原文地址:https://www.cnblogs.com/20190906xbmhyf/p/11732219.html