1. 更改字段类型长度
??? alter table 表名
??? alter column 字段名 类型的长度
??? 例:把城市表的城市名字段由原来的长度20改为30
??? alter table city
??? alter column cityname varchar(30);
2. 更改字段类型
??? alter table 表名
??? alter column 字段名 更改后的类型
??? 例:把城市表的城市名字段有原来的varchar类型改为int类型
??? alter table city
??? alter column cityname int;
3. 添加not null约束
??? alter table 表名 alter column 字段名 int not null
??? 例:把cid不能输入空值
??? alter table city alter column cid int not null;
4. 设置主键
??? alter table 表名 add constraint 主键名 primary key(字段名)
??? 例:把cid设为主键
??? alter table city add constraint PK_cid primary key(cid);
5. 更改字段名
??? EXEC sp_rename '表名.字段名','更改后的字段名','COLUMN'
6. 添加字段名
??? ALTER TABLE 表 ADD 字段名 字段类型 DEFAULT null
详细解决方案
SQL Server中施用SQL语句修改表字段类型
热度:77 发布时间:2016-05-05 14:55:57.0
相关解决方案
- myeclipse联接sql server 2008看不到用户表
- Server Tomcat v7.0 Server不能起步
- 在哪找的SQL Server 2005数据库驱动文件?为什么sql server2005安装盘上面没有找到
- The server encountered an internal error () that prevented it from fulfilling th解决方案
- JSP运行异常 STRUTS + SQL SERVER 2005
- jsp连接sql server 2005时出现的异常
- jsp连接sql server 2005数据库是异常!
- 大家帮帮忙呀The server encountered an internal error () that prevented it解决方法
- ASP上Set GetSession("conn")=server.CreateObject("adodb.connection")
- Server Apache Tomcat v6.0.35 at localhost failed to start
- JDBC 连接sql server 2005老是失败怎么处理?恳请高手帮忙。
- SOS-(奇怪现象)服务器暂不可用500 internal server error,该怎么解决
- tomcat没法运行Could not publish to the server. Error while expanding
- sql server 设置非空默认值之后,hibernate添加出现异常
- WEBstruts The server encountered an internal error () that prevented it fr解决思路
- jsp连接sql server 2005错误
- 可以安装在win7系统的sql server
- 出现异常:cvs [server aborted]:"passwd" requires write access to the repository
- exchange server 2000提供全部用户邮件到达的java api吗
- jdbc 直连sql server 2000 连不下
- Error 500-Internal Server Error 如何解决
- JAVA连接SQL SERVER 2000数据库,该如何解决
- Server returned HTTP response code: 403 for URL如何解决
- IM聊天系统的有关问题,用Tigase Server 如何实现挤线功能
- com.microsoft.sqlserver.jdbc.SQLServerException: 用户 'sa' 登录失败。该用户与可托 SQL Server
- Error 500--Internal Server Error
- Error 500-Internal Server Error
- jbuilder2006 连接 sql server 2000新有关问题
- java.sql.SQLException: [Microsoft][ODBC SQL Server Driver]l??????? hstmt
- eclipse中不能筑tomcat server