明輝手游網(wǎng)中心:是一個免費提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺!

詳細(xì)說明mysql函數(shù)拼接查詢concat函數(shù)的使用方法

[摘要]本文主要為大家?guī)硪黄猰ysql函數(shù)拼接查詢concat函數(shù)的使用方法。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧,希望能幫助到大家。如下所示://查詢表manag...
本文主要為大家?guī)硪黄猰ysql函數(shù)拼接查詢concat函數(shù)的使用方法。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧,希望能幫助到大家。

如下所示:


//查詢表managefee_managefee的年year 和 month ,用concat函數(shù)拼成year-month。例如將2017和1 拼成2017-01。.
select CONCAT(a.year,'-',if(a.month<=9,CONCAT('0',a.month),a.month))as date,a.* from managefee_managefee as a;

//查詢managefee_managefee中時間段為2017-01到2017-07的數(shù)據(jù)
select * from
(
select CONCAT(a.year,'-',if(a.month<=9,CONCAT('0',a.month),a.month))as date,a.* from managefee_managefee as a
) b
where b.date between '2017-01' and '2017-07';

相關(guān)推薦:

JavaScript連接兩個或多個數(shù)組的方法concat()

MySQL中使用group_concat()函數(shù)的實例詳解

深入理解javascript中concat方法

以上就是詳解mysql函數(shù)拼接查詢concat函數(shù)的使用方法的詳細(xì)內(nèi)容,更多請關(guān)注php中文網(wǎng)其它相關(guān)文章!


學(xué)習(xí)教程快速掌握從入門到精通的SQL知識。