在mysql workbench中建立存储过程

本文提供了一个MySQL存储过程的实例,详细介绍了如何实现登录和注册功能,帮助初学者解决常见问题。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

新手玩mysql stored procedure(存储过程),期间遇到了不少麻烦,为此贴出来,希望能为也正在玩存储过程的人提供一个demo。欢迎拍砖。

/*特别注明:下边的SQL语句都是用test数据库*/
use test;
create table user
(
    id int not null auto_increment primary key,
    userName varchar(30),
    userPsw varchar(20)
);
/*取消
create unique index user_id_index on user(id);
drop index user_id_index on user;
*/
use test;
create index user_name_index on user(userName);

use test;
/*登录存储过程*/
DELIMITER $$ 
create procedure `login`
(
in userName varchar(30) , 
in userPsw varchar(20) 
)
BEGIN
DECLARE selectname varchar(30);
DECLARE selectpsw varchar(20);
DECLARE result bool;
select user.userName,user.userPsw into selectname, selectpsw
    from user 
    where user.userName=userName and user.userPsw=userPsw;
    
IF selectname is not null and selectpsw is not null then
   set result=true;
ELSE set result=false;
end if;
select result;
end$$
DELIMITER ;

/*注册存储过程*/
DELIMITER $$
create PROCEDURE `regist`
(
/*out result bool;*/
in userName varchar(30),
in userPsw varchar(20)
)
BEGIN
DECLARE result bool;
DECLARE select_count int;

SELECT COUNT(user.userName) into select_count 
from user where user.userName=userName and user.userPsw=userPsw;
IF select_count=0 THEN
/*无重复则插入*/
INSERT INTO USER(user.userName,user.userPsw) 
values(userName,userPsw);
set result=true;
/*否则,不插入,返回插入失败*/
ELSE set result=false;
/*用于临时显示结果,待注释*/
SELECT RESULT;
END IF;

END$$
DELIMITER ;



use test;
drop procedure check_user;
drop procedure login;

use test;

insert into user(userName,userPsw) values
('ding','ding');
/*下边是验证存储过程*/
use test;
call regist('ding','ding');
call login('admin','admin');

其实mysql 存储过程并不难写,关键是注意什么时候要“;”什么时候不要分号就OK了,否则会莫名其妙地编译错误。



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值