先创建,然后调用:
--
创建存储过程
DELIMITER//
create
procedure
myproc()
begin
declare
num
int
set
num=1
while
num
<=
24
do
insert
into
t_calendar_hour(hourlist)
values(num)
set
num=num+1
end
while
commit
end//
--
调用存储过程
CALL
myproc()
PS:这里再为大家推荐2款常用的sql在线工具供大家参考使用(包含SQL语句用法说明):
SQL在线压缩/格式化工具:
http://tools.jb51.net/code/sql_format_compress
SQL代码在线格式化美化工具:
http://tools.jb51.net/code/sqlcodeformat
更多关于MySQL相关内容感兴趣的读者可查看本站专题:《MySQL存储过程技巧大全》、《MySQL常用函数大汇总》、《MySQL日志 *** 作技巧大全》、《MySQL事务 *** 作技巧汇总》及《MySQL数据库锁相关技巧汇总》
希望本文所述对大家MySQL数据库计有所帮助。
createprocedure
存储过程名
@参数1
varchar(10),
@参数2
int
as
(
insert
into
tables
values(@参数1,@参数2)
)
end
go
就是这样。
你的输入参数对应的是你sql语句中要插入的数据列,并且要保证
类型一致。
if exists(select * from dbo.sysobjects where id=object_id('dbo.pro_adduser') and objectproperty(id,'isprocedure')=1) drop procedure pro_adduser go create procedure pro_adduser @orderid int, @uid varchar (20) as begin try begin transaction insert into a values(@orderid)--给第一个表数据 insert into b values(@orderid,@uid)--给第二个表数据 commit transaction end try begin catch rollback transaction end catch go 第一个表的id 是自增就这样,不是,在存储过程里加个id参数,放到第一个插入语句欢迎分享,转载请注明来源:内存溢出
评论列表(0条)