·您的位置: 首页 » 资源教程 » 编程开发 » 数据库 » 如何用sql语句修改数据表中字段,实现identity(100,1)

如何用sql语句修改数据表中字段,实现identity(100,1)

类别: MSSQL教程  评论数:0 总得分:0
create table common_info(
name varchar(10),
value int)
insert into common_info values(\'msg_count\', 100)
你的sql应该这么写(用存储过程):
create proc p_ins_alm_msg
    @msg_count     int out
as
    select @msg_count = value from common_info where name = \'msg_count\'
    update common_info set value = @msg_count+ 1 where name = \'msg_count\' and value =

@msg_count
        if @@rowcount = 0
            return -1000
    insert into table1 (field0)
    values(@msg_count)
    return 0
go


       
-= 资 源 教 程 =-
文 章 搜 索
关键词:
类型:
范围:
纯粹空间 softpure.com
Copyright © 2006-2008 暖阳制作 版权所有
QQ: 15242663 (拒绝闲聊)  Email: faisun@sina.com
 纯粹空间 - 韩国酷站|酷站欣赏|教程大全|资源下载|免费博客|美女壁纸|设计素材|技术论坛   Valid XHTML 1.0 Transitional
百度搜索 谷歌搜索 Alexa搜索 | 粤ICP备19116064号-1