2021-06-30

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" , "nihao") -- 替换

select now()                --获取当前日期时间 包含年月日时分秒

select curdate()              --获取当前年月日

select curtime()              --获取当前时分秒

select unix_timestamp()    --获取当前日期时间戳

select frome_unixtime(1622618470)  -- 将时间戳转换成对应的年月日时间

select abs(-56) -- 绝对值

select cell(15.1) -- 向上取整

select floor(36.9)  -- 向下取整

select round(5.6)  -- 随机数[0,1)

select mod( 10 , 3 )  -- 取余

use school;

select database()      -- 当前数据库

select user()          -- 当前用户

select version()        -- 当前mysql版本

INSERT INTO `school`.`studentinfo` (`name`,`sex`,`age`,`address`) VALUES ('小三三','男',20,'终南山');

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

你可能感兴趣的:(2021-06-30)