注:若测试单个函数的话,需要在函数前面加上SELECT,要不会报错
SELECT 函数 name;
name是搜索出来,想要展示的列名,比如
CANCAT(str1,str2,…)
STRCMP(str1,str2)
LENGTH(str)
UPPER(str)
LOWER(str)
LOCATE(str1,str2)
或
POSITION(str2 IN str1)
LEFT(str,num)
比如 LEFT('helloworld',3)会返回 'hel'
RIGHT(str,num)
比如 RIGHT('helloworld',3)会返回 'rld'
INSERT(原字符串,开始位置,结束位置,待替换的字符串)
比如 INSERT('hellomysqlyes',6,10,'vue')结果就是'hellovueyes'
REPLACE(str,substr,newstr)
将把str中的字符串substr替换成newstr
ABS(x)
MOD(x,y)
RAND()
ROUND(x,y)
TRUNCATE(x,y)
CEIL(x)
FLOOR(x)
CURDATE()
返回结果:年-月-日
CURTIME()
返回结果:时:分:秒(24小时制)
NOW()
返回结果:年-月-日 时:分:秒
WEEK(date)
例如:WEEK(NOW())
VERSION()
DATABASE()
USER()