sql server 学习笔记

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql server 学习笔记相关的知识,希望对你有一定的参考价值。

1. 修改student表中sdept字段改为varchar类型,长度为30,并且不为空

1 alter table student alter column sdept varchar(30) not null

2. 删除student表中的address列

1 alter table student drop column address

3. 向student表中添加一个列 code 和 address

1 alter table student add code char(6) not null ,address varchar(40) not null

 

以上是关于sql server 学习笔记的主要内容,如果未能解决你的问题,请参考以下文章

使用实体框架迁移时 SQL Server 连接抛出异常 - 添加代码片段

SQL Server 2012 案例教程(贾祥素)——学习笔记

C# 学习笔记(17)操作SQL Server 上

学习笔记:python3,代码片段(2017)

sql server 学习笔记

C# 学习笔记(18)操作SQL Server 中