How to use the concat function in mysql

How to use the concat function in mysql

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:
  • An example of how PHP converts MySQL query results into an array and concatenates them with where
  • Two methods of MySql comma concatenation string query
  • Implementation steps of Mysql merge results and horizontal splicing fields

<<:  JavaScript implements displaying a drop-down box when the mouse passes over it

>>:  Docker Stack deployment method steps for web cluster

Recommend

Summary of new usage of vi (vim) under Linux

I have used the vi editor for several years, but ...

Solution for adding iptables firewall policy to MySQL service

If your MySQL database is installed on a centos7 ...

CSS3 sample code to achieve element arc motion

How to use CSS to control the arc movement of ele...

Nodejs uses readline to prompt for content input example code

Table of contents Preface 1. bat executes js 2. T...

In-depth analysis of the diff algorithm in React

Understanding of diff algorithm in React diff alg...

My personal summary of mysql 5.7 database installation steps

1.mysql-5.7.19-winx64.zip (this is the free insta...

Detailed explanation of EXT series file system formats in Linux

Linux File System Common hard disks are shown in ...

Detailed explanation of data types and schema optimization in MySQL

I'm currently learning about MySQL optimizati...

Implementation of MySQL multi-version concurrency control MVCC

Transaction isolation level settings set global t...

Analysis of the advantages of path.join() in Node.js

You might be wondering why you should use the pat...

mysql three tables connected to create a view

Three tables are connected. Field a of table A co...

MySQL data archiving tool mysql_archiver detailed explanation

Table of contents I. Overview 2. pt-archiver main...

MySQL query optimization using custom variables

Table of contents Optimizing sorting queries Avoi...