sql server
user_987654321
博客的“有序列表”和“无序列表”要逼死我(才不是强迫症)
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
sql server中sql语句(一)
sql server中sql语句 问题篇(一) 以下三条依次为: 移除表中一个check完整性约束(tips:要删除某列时必须先移除与它有关的完整性约束条件); 向某一列添加check完整性约束; 向某一列添加默认值; alter table Student drop CK__Student__Statu__4BAC3F29; alter table St...原创 2019-03-12 17:39:20 · 250 阅读 · 0 评论 -
sql server中sql语句(二)
sql server中sql语句(二) 这次主要是 复制表 的实现。 复制结构和数据 select * into new_table from old_table; 复制结构 select * into new_table from old_table where 1=2; ...原创 2019-06-30 17:53:02 · 179 阅读 · 0 评论
分享