2.在[mysqld]后面任意一行添加“skip-grant-tables”(按i进入插入模式)
3.添加完那一行后点击ESC退出插入模式,输入(:wq)保存退出
4.使用service mysqld restart来重启(重启失败则按提示输入systemctl restart mysqld.service)
5.再次输入 # mysql 则可直接进入
create procedure p16(in x int)BEGIN
declare a int default 0
set a=x
select @b=userid from userinfo where deptid=a
select userid,salary from salayrinfo where userid=@b
END
然后 call p16(1)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)