mysql CONCAT用法
Posted 波神
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql CONCAT用法相关的知识,希望对你有一定的参考价值。
1、全表查询
SELECT * FROM `wh_statistics_service_api_request`;
由于上面时间是按year,month,day三个数值字段来存时间的,现在想通过时间段查询,可以用concat将三个字段拼接
SELECT CONCAT(t1.year,\'-\',t1.month,\'-\',t1.day) as accessDate, t1.total_request_count as accessCount FROM wh_statistics_service_api_request t1, wh_bu_service t2 where t1.service_id=t2.service_id AND date(CONCAT(t1.year,\'-\',t1.month,\'-\',t1.day)) <date(\'2018-5-19\');
以上是关于mysql CONCAT用法的主要内容,如果未能解决你的问题,请参考以下文章
mysql中concat 和 group_concat()的用法
mysql中concat 和 group_concat()的用法