摘要:
delimiter $$; 将结束符从‘;’改为'$$;' create procedure big_data (num int) # big_data:名称;num int:参数列表 begin declare i int; 定义一个变量 set i = 0; 赋值 while i < num d 阅读全文
摘要:
mysql 数据的权限实质都是在 user 表里控制的 1、grant grant all on *.* to 'ads'@'localhost' identified by '123456' with grant oprion; # all:所有的权限 # *.*:所有数据库下面的所有表 # 'a 阅读全文