mysql函数

  • 介绍
本文介绍一些在MySQL中常用的函数。
  • 当前时间
select now(); select current_time(); 查询当前的时间(时分秒) select current_timestamp(); 查询当前的时间(年月日 时分秒) select current_date(); 查询当前日期(年月日)
  • 显示当前连接的库
select database();
  • 当前登录的用户
select user();
  • 显示当前数据库的版本
select version();
  • 聚合函数(用在多条数据上)
sum(); count(); max(); min(); avg();
  • 进制
select bin(10); select oct(10); select hex(255);
  • 字符串函数
select length("suren"); select concat("suren", "===", "test"); select upper("suren");
  • 数值函数
select abs(1-10); 获取绝对值 select rand(); 获取随机数
  • 其他
select md5("suren");
  • 参考
MySQL中常用的命令

你可能感兴趣的:(mysql,函数)