Create function function_name(参数列表) returns 返回值类型函数体
(1)函数名,应该合法的标识符,并且不应该与已有的关键字冲突。
(2)一个函数应该属于某个数据库,可以使用db_name.funciton_name的形式执行当前函数所属数据库,否则为当前数据库。
(3)参数部分,由参数名和参数类型组成。
(4)返回值类类型。
(5)函数体由多条可用的mysql语句,流程控制,变量声明等语句构成。
(6)多条语句应该使用begin end语句块包含。
注意,一定要有return返回值语句。
Dropfunction if exists function_name;
Show function status like ‘partten’Show create function function_name;
Alter function function_name函数选项;
IF search_condition THENstatement_list[ELSEIF search_condition THEN statement_list]...[ELSE statement_list]END IF;
CASE case_valueWHEN when_value THEN statement_list[WHEN when_value THEN statement_list]...[ELSE statement_list]END CASE;
[begin_label:]WHILE search_condition DO statement_listEND WHILE [end_label];
如果需要在循环内提前终止while循环,则需要使用标签;标签需要成对出现。
(1)退出整个循环:leave 相当于break
(2)退出当前循环:iterate 相当于 continue
(3)通过退出的标签决定退出哪个循环。
DECLARE var_name[,...] type [DEFAULT value]
这个语句被用来声明局部变量。要给变量提供一个默认值,请包含一个DEFAULT子句。值可以被指定为一个表达式,不需要为一个常数。如果没有DEFAULT子句,初始值为NULL。
使用语序使用 set 和 select into语句为变量赋值。
(1)在函数内是可以使用全局变量(用户自定义的变量的)
(2)@XXX 全局变量不用声明 可以直接@XXX使用。
获取当前班级内,最大的学号。
(1)参考学生表
create table join_student( stu_id int not null auto_increment, stu_no char(10), class_id int not null, stu_name varchar(10), stu_info text, primary key (stu_id) );
(2)计算新增学号
drop function if existssno;delimiter $$ #在包含有语句块时 可以更换语句结束符“;” 为“$$” create function sno(c_id int)returns char(10) begin declare last_no char(10); #声明一个局部变量 用来保存当前最大的学号, 如果没有就为nulldeclare class_name char(10); select stu_no from join_student where class_id=c_id order by stu_no desc limit 1 into last_no; if last_no is null then #如果为空代表当前班级没有学生 从1开始,获得班级名字 return concat ((select c_name from join_class where id=c_id into class_name),'001'); #concat() 函数的作用是连接字符串。 else return concat(left(last_no,7),lpad(right(last_no,3) + 1, 3, '0')); end if;#return @last_no; end $$delimiter ;
(3)随机获得学生名字。
drop function if exists sname; delimiter $$ create function sname() returns char(2) begin declare first_name char(16) default '赵钱孙李周吴郑王冯陈褚卫蒋沈韩杨'; declare last_name char(10) default '甲乙丙丁戊己庚辛壬癸'; declare full_name char(2); set full_name=concat(substring(first_name,floor(rand()*16+1), 1), substring(last_name,floor(rand()*10+1), 1)); return full_name; end $$ delimiter ;
Abs(X) //绝对值abs(-10.9) = 10Format(X,D) //格式化千分位数值format(1234567.456, 2) =1,234,567.46Ceil(X) //向上取整ceil(10.1) = 11Floor(X) //向下取整floor (10.1) = 10Round(X) //四舍五入去整Mod(M,N) //M%N M MOD N 求余 10%3=1Pi() //获得圆周率Pow(M,N) //M^N求指数Sqrt(X) //算术平方根Rand() //随机数TRUNCATE(X,D) //截取D位小数
Now(),current_timestamp() //当前日期时间Current_date() //当前日期current_time() //当前时间Date(‘yyyy-mm-dd HH;ii:ss’) //获取日期部分Time(‘yyyy-mm-dd HH;ii:ss’) //获取时间部分Date_format(‘yyyy-mm-dd HH;ii:ss’,’%D %y %a %d %m %b %j');Unix_timestamp() //获得unix时间戳From_unixtime(); //从时间戳获得时间
LENGTH(string ) //string长度,字节CHAR_LENGTH(string) //string的字符个数SUBSTRING(str ,position [,length ]) //从str的position开始,取length个字符REPLACE(str ,search_str ,replace_str) //在str中用replace_str替换search_strINSTR(string ,substring ) //返回substring首次在string中出现的位置CONCAT(string [,... ]) //连接字串CHARSET(str) //返回字串字符集LCASE(string ) //转换成小写LEFT(string ,length ) //从string2中的左边起取length个字符LOAD_FILE(file_name) //从文件读取内容LOCATE(substring , string [,start_position ]) //同INSTR,但可指定开始位置LPAD(string ,length ,pad ) //重复用pad加在string开头,直到字串长度为lengthLTRIM(string ) //去除前端空格REPEAT(string ,count ) //重复count次RPAD(string ,length ,pad) //在str后用pad补充,直到长度为lengthRTRIM(string ) //去除后端空格STRCMP(string1 ,string2 ) //逐字符比较两字串大小
CASE WHEN [condition]THEN result[WHEN [condition]THEN result ...][ELSE result]END 多分支IF(expr1,expr2,expr3) 双分支。
Count()Sum();Max();Min();Avg();Group_concat()
Md5();Default();