Home > Database > Mysql Tutorial > 在SQL Server中修改字段类型和字段名称

在SQL Server中修改字段类型和字段名称

WBOY
Release: 2016-06-07 14:55:22
Original
1922 people have browsed it

在SQL Server中修改字段类型和字段名称 --以下是完整的SQL执行语句 if exists(select * from syscolumns where id=object_id('数据表名称') and) --判断该字段是否存在 begin ALTER TABLE 表明 ALTER COLUMN 字段名 VARCHAR(64);--更改类型 end GO if exis

  在SQL Server中修改字段类型和字段名称

  --以下是完整的SQL执行语句

  if exists(select * from syscolumns where id=object_id('数据表名称') and) --判断该字段是否存在

  begin

  ALTER TABLE 表明 ALTER COLUMN 字段名 VARCHAR(64);--更改类型

  end

  GO

  if exists(select * from syscolumns where id=object_id('表名') and) --判断该字段是否存在

  begin

  EXEC sp_rename '表明。旧字段名', '新字段名', 'COLUMN'; --更改字段名称 sp_rename 为数据存储过程

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template