3、定义一个过程main

2021/6/5 18:55:04

本文主要是介绍3、定义一个过程main,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

delimiter $$
drop procedure if exists main;
create procedure  main()
begin
declare x varchar(100);
declare xing,ming,xm varchar(3);
declare sex,n int;
declare xh varchar(8);
set xh='19000';
drop table if exists xs1;
create table xs1 as select 学号,姓名,性别 from xs;
delete from xs1;
set x='刘王张赵李钱朱何孙曾陈吴黄郑邓周毛江胡';
set n=1;
while n<21 do
call get_a_character(x,xing);
call get_name(ming,sex);
set xm=concat((select xing),(select ming)); 
select xm;
insert into xs1 values ((select xh),(select xm),sex);
set xh=xh+1;
set n=n+1;
end while;
end $$
delimiter ;
call main();
select * from xs1;

 



这篇关于3、定义一个过程main的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程