navicat数据库中的内置函数

select concat ("hello" , "world");-- 连接字符串
select length ("hello");-- 返回字符串的长度
select ucase ("hello");-- 将字符串转为大写 upperCase()
select lcase ("HELLO");-- 将字符串转为小写 lowerCase()
select ltrim (" hello ");-- 去除左侧空格 leftTrim
select rtrim (" hello ");-- 去除右侧空格 reghtTrim
select trim (" hello ");-- 去除两侧空格
select replace ("hello world" , "hello" ,"nihao");-- 替换

select now() -- 获取当前日期时间 包含年月日时分秒
select curdate() -- 获取当前年月日
select curtime() -- 获取当前时分秒
select unix_timestamp() -- 获取当前日期时间戳
select from_unixtime(1622618470) -- 将时间戳转换为对应的年月日时间

select abs(-56) -- 绝对值
select ceil(15.1) -- 向上取整
select floor(36.9) -- 向下取整
select round(5.5) -- 四舍五入
select rand() -- 随机数 [0,1)
select mod(10 , 3) -- 取余

use school;
select database() -- 当前数据库
select user() -- 当前用户
select version() -- 当前mysql版本

select last_insert_id() -- 最后一条插入记录的主键id

你可能感兴趣的:(navicat数据库中的内置函数)