select concat("hello" , "world") # 连接字符串
select length("hello") # 返回字符串的长度
select ucase("hello") # 讲字符串转为大写 upperCase()
select lcase("HELLO"); # 讲字符串转为小写 lowerCase()
select ltrim(" hello "); # 去除左侧空格 leftTrim
select rtrim(" hello "); # 去除右侧空格 rightTrim
select trim( "hello" ); # 去除两侧空格
select replace("hello world" , "hello" , "你好") # 替换
select now() # 获取当前日期时间 包含年月日时分秒
select curdate() # 获取当前年月日
select curtime() # 获取当前时分秒
select unix_timestamp() # 获取当前日期时间戳 1970-01-01-0:0:0:0 距离当下的毫秒数
select from_unixtime("1622679805") # 将时间戳转换成对应的年月日时间
select abs(-56) # 绝对值
select ceil(15.1) # 向上取值
select floor(15.9) # 向下取值
select round(15.5) # 四舍五入
select rand() # 随机数 [0,1]
select mod( 10 , 3 ) # 取值
select database() # 当前数据库
select user() # 当前用户
select version() # 当前MySQL版本
select last_insert_id() # 最后一条插入记录的主键id
网友评论