创建表sch
向表中加入数据
1、创建一个可以统计表格内记录条数的存储函数 ,函数名为count_sch()
CREATE DEFINER=`root`@`%` FUNCTION `count_sch`() RETURNS int(11)
BEGINDECLARE total INT DEFAULT 0;#Routine body goes here...SELECT count(1) into total from sch;INSERT into test VALUES (total);RETURN total;END
其中total作为接受数据的变量
运行得到
2、创建一个存储过程avg_sai,有3个参数,分别是deptno,job,接收平均工资,
功能查询emp表dept为30,job为销售员的平均工资。
mysql> \d //
mysql> create procedure bb (in x int,in y varchar(255),out z int)-> begin-> select avg(sai) into z from emp where deptno=x and job=y;-> end //