sql常用函数

  • IF(expr,v1,v2) 如果表达式 expr 成立,返回结果 v1;否则,返回结果 v2。 SELECT IF(1 >
    0,‘正确’,‘错误’)

  • IFNULL(v1,v2) 如果 v1 的值不为 NULL,则返回 v1,否则返回 v2。 SELECT
    IFNULL(null,‘Hello Word’)

  • ISNULL(expression) 判断表达式是否为 NULL SELECT ISNULL(NULL);

  • 获取当前日期,当前时间,当前日期时间
    select curdate(), current_date, curtime(), current_time, now(), sysdate(), localtime, current_timestamp;

  • 当前日期加减
    select adddate(curdate(), 1), date_add(curdate(), interval 1 day ), subdate(curdate(), 1), date_sub(curdate(), interval 1 day )

  • 当前时间加减
    select addtime(now(), 30), date_add(now(), interval 30 second ), subtime(now(), 30), date_sub(now(), interval 30 second ) ;

  • 提取日期和时间
    select date(now()), time(now());

  • 提取日期时间中具体的某个值
    select extract(year from now()), extract(month from now()), extract(day from now()), extract(hour from now()), extract(minute from now()), extract(second from now());
    select year(now()), month(now()), day(now()), hour(now()), minute(now()),second(now());

  • 计算时间差
    select datediff(adddate(now(), 1), now()), timediff(adddate(now(), 1), now()), timestampdiff(day ,adddate(now(), 1), now())

  • 计算今天是第多少天
    select dayofweek(now()), dayofmonth(now()), dayofyear(now())

你可能感兴趣的:(数据库)