
sql sever
fu_gui_mu_dan
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
sql sever不能用create table table1 as select * from table2
sql sever不能用create table table1 as select * from table2;这是oracle中这样用,sql sever用例如:select * into Student_backup from Student;...原创 2018-04-04 18:53:33 · 13173 阅读 · 0 评论 -
向Student表增加“入学时间列,数据类型为日期型
向Student表增加“入学时间列,数据类型为日期型sql sever : alter table Student ADD S_entrance datetime;oracle:alter table Student ADD S_entrance date;原创 2018-04-04 19:02:09 · 18121 阅读 · 1 评论 -
cluster 附近有语法错误,聚簇索引
sql sever 为create clustered index Stusname on Student(Sname);原创 2018-04-04 22:31:38 · 1114 阅读 · 0 评论