As shown below: //Query the year and month of the managefee_managefee table, and use the concat function to form year-month. For example, 2017 and 1 are combined to form 2017-01. . select CONCAT(a.year,'-',if(a.month<=9,CONCAT('0',a.month),a.month))as date,a.* from managefee_managefee as a; //Query the data in managefee_managefee with the time period from 2017-01 to 2017-07 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'; The above article on how to use the concat function in MySQL is all I have to share with you. I hope it can give you a reference, and I also hope that you will support 123WORDPRESS.COM. You may also be interested in:
|
<<: JavaScript implements displaying a drop-down box when the mouse passes over it
>>: Docker Stack deployment method steps for web cluster
I have used the vi editor for several years, but ...
If your MySQL database is installed on a centos7 ...
How to use CSS to control the arc movement of ele...
transform:scale() can achieve proportional zoomin...
Table of contents Preface 1. bat executes js 2. T...
Understanding of diff algorithm in React diff alg...
1.mysql-5.7.19-winx64.zip (this is the free insta...
Linux File System Common hard disks are shown in ...
I'm currently learning about MySQL optimizati...
Transaction isolation level settings set global t...
You might be wondering why you should use the pat...
Three tables are connected. Field a of table A co...
Table of contents I. Overview 2. pt-archiver main...
Table of contents Optimizing sorting queries Avoi...
A sophomore asked me how to install and configure...