select 18/5,18%5;
select (pi()/4/(2*pi()))*360;
select pow(9,4);
select truncate(3.14159,2);//显示小数点后两位
select char_length('hello world'),char_length('university');//查看字符串长度
select substring('nice to meet you!',9,4);//取出第9个字符后面4位的字符子串
select repeat('cheer',3);//cheercheercheer
SELECT REVERSE('voodoo');//反转字符串
select week((select curdate()),3);//显示当前是全年的第几周
select dayname((select curdate()));//显示今天是星期几
select dayofweek((select curdate()));//显示今天是(按星期日为第一天算)每周的第几天
select year(curdate())-year('1929-02-14');//显示当前年份与'1929-02-14'相差的年份
select date_format(curdate(),'%y %b %D %W');//按97 Oct 4th Saturday格式输出当前日期
select time_to_sec(curtime());//把当前的时间值转化为秒
show processlist;//查看当前连接状态
select sha('mysql');//对字符串mysql加密
select md5('mysql');//对字符串mysql加密
MySQL——函数的使用(数字,字符串 时间)
最新推荐文章于 2022-12-03 23:09:32 发布