摘要:
参考文档: https://blog.csdn.net/qq_39247153/article/details/81082313 阅读全文
摘要:
DATE_FORMAT() 函数用于以不同的格式显示日期/时间数据。 语法: DATE_FORMAT(date,format)date 参数是合法的日期。format 规定日期/时间的输出格式。例1:SELECT DATE_FORMAT(NOW(),'%Y-%m-%d %H:%i:%S');结果:2 阅读全文
摘要:
将查询结果拼接成一个字符串,返回结果为连接参数产生的字符串。如有任何一个参数为NULL ,则返回值为 NULL。 eg:select contact('11','22','33'); 返回结果:112233 阅读全文
摘要:
1. case....when select 列名1, 列名2, case 列名3 when 条件1 then 值1 when 条件2 then 值2 when 条件3 then 值3 else then 值4 end as 别名 from 表名 where 过滤条件 ; 示例: select na 阅读全文