Home >Database >Mysql Tutorial >SQL创建数据库中所有用户数据表自增一主键

SQL创建数据库中所有用户数据表自增一主键

WBOY
WBOYOriginal
2016-06-07 17:23:111248browse

--SQL创建数据库中所有用户数据表自增一主键--主键说明:名称为ID,数据类型为整形自增一

Linux公社

首页 → 数据库技术

背景:

阅读新闻

SQL创建数据库中所有用户数据表自增一主键

[日期:2012-11-24] 来源:Linux社区  作者:xqf222 [字体:]

--SQL创建数据库中所有用户数据表自增一主键
--主键说明:名称为ID,数据类型为整形自增一

--查询创建前的当前数据库所有约束
select * from information_schema.key_column_usage

declare @TableName nvarchar(250)
declare @ColumnName nvarchar(250)
set @ColumnName='ID'
--声明读取数据库所有数据表名称游标mycursor1
declare mycursor1 cursor for select name from dbo.SysObjects WHERE OBJECTPROPERTY(ID, 'ISUSErTable') = 1
 --打开游标
open mycursor1
--从游标里取出数据赋值到我们刚才声明的数据表名变量中
fetch next from mycursor1 into @TableName
--如果游标执行成功 
while (@@fetch_status=0)
begin 

--如果存在主键列
IF EXISTS (select * from syscolumns Where ID=OBJECT_ID(N'['+@TableName+']') and+@ColumnName+'')
begin
exec ('ALTER TABLE ['+@TableName+'] DROP COLUMN '+@ColumnName+'')
end

exec ('ALTER TABLE ['+@TableName+'] ADD '+@ColumnName+' [int] IDENTITY(1,1) NOT NULL PRIMARY KEY')


 --用游标去取下一条记录
    fetch next from mycursor1 into @TableName
end

--关闭游标
close mycursor1
--撤销游标
deallocate mycursor1

--查询创建后的当前数据库所有约束
select * from information_schema.key_column_usage

linux

  • 0
  • Oracle递归查询(start with)

    SQL删除数据库中所有用户数据表主键

    相关资讯       SQL语句 

    图片资讯      

  • SQL 内置函数(pivot) 纵转横

    SQL 内置函数(pivot
  • 本文评论   查看全部评论 (0)

    评论声明

    最新资讯

    本周热门

    Linux公社简介 - 广告服务 - 网站地图 - 帮助信息 - 联系我们
    本站(LinuxIDC)所刊载文章不代表同意其说法或描述,,仅为提供更多信息,也不构成任何建议。


    Copyright © 2006-2011 Linux公社 All rights reserved 浙ICP备06018118号

    Statement:
    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