创建表sch
向表中加入数据
1、创建一个可以统计表格内记录条数的存储函数 ,函数名为count_sch()
CREATE DEFINER=`root`@`%` FUNCTION `count_sch`() RETURNS int(11)
BEGIN
DECLARE total INT DEFAULT 0;
#Routine body goes here...
SELECT count(1) into total from sch;
INSERT into test VALUES (total);
RETURN total;
END
其中total作为接受数据的变量
运行得到
文章来源:https://www.toymoban.com/news/detail-559979.html
2、创建一个存储过程avg_sai,有3个参数,分别是deptno,job,接收平均工资,
功能查询emp表dept为30,job为销售员的平均工资。文章来源地址https://www.toymoban.com/news/detail-559979.html
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 //
到了这里,关于mysql函数练习的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!