@msg_count if @@rowcount = 0 return -1000 insert into table1 (field0) values(@msg_count) return 0 go
用sql语句修改数据表中字段 实现identity(100,1)的递增
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 outasselect @msg_count = value from common_info where name = 'msg_count'update common_info set value = @msg_count+ 1 where name = 'msg_count' and value =
相关文章:
热门推荐
- intellij idea和eclipse比较
- 1.PHP100教程之深入理解PHP内核类的结构
- 2.IE6-8中Date不支持toISOString的修复方法是什么?修复方法分享
- 3.SQL语句怎么添加删除修改字段
- 4.简单介绍几个常用的SQL查询语句
- 5.C#获取系统当前IE版本号
- 6.Openbsd 3.6 + APACHE + MYSQL + PHP + mod_limitipconn
- 7.FreeBSD Apache+Mysql+Php4的安装
- 8.如何在FreeBSD上用PHP实现在线添加FTP用户
- 9.Microsoft 脚本编码器(2) --- 使用脚本编码器
- 10.Golang 使用gorm添加数据库排他锁,for update