mysql存储过程(2)select into from 用法
select 筛选字段 into 变量 from 用法
例如:
select count(id) into max_num from test_test;
##查询id总数,查询结果存入变量max_num
常见错误:
1、select ..into的用法是select a,b into c,d
你写的是select a into c, b into d的形式。要保证前后的变量个数一
2、select count(id) into max_num from test_test;
[Err] 1327 - Undeclared variable: max_num
由于这个max_num是存储过程中输出参数,直接将查询SQL复制到查询窗口,进行查询导致报错
转载请注明:谷谷点程序 » mysql存储过程(2)select into from 用法