Instance method for mysql string concatenation and setting null value

Instance method for mysql string concatenation and setting null value

#String concatenation concat(s1,s2); concatenate the strings in last_name and first_name in the table

select concat(last_name,first_name) as name from employees;

#Only last_name will be modified, not first_name

SELECT first_name,last_name AS f FROM employees;

# Separate the two columns with a comma and name them out_put

SELECT CONCAT(`last_name`,',',`phone_number`) AS out_put FROM employees;

#ifnull determines whether it is empty. If it is empty, it will be displayed as 0 instead of null, and the column name will be displayed as the result

SELECT IFNULL(commission_pct,0) AS result FROM employees;

Content extension:

String concatenation

1.1 The CONCAT(s1, s2, ...) function returns the string generated by concatenating the parameters, one or more contents to be concatenated. If any one of them is NULL, the return value is NULL.

SELECT CONCAT('Current time:',NOW()); -- Output result: Current time: 2019-01-17 11:27:58


1.2 CONCAT_WS(x,s1,s2,...) function

Returns a string consisting of multiple strings concatenated together, with an x ​​between each string.

SELECT CONCAT_WS(';','pan_junbiao's blog','KevinPan','pan_junbiao'); -- Output: pan_junbiao's blog;KevinPan;pan_junbiao

I hope the above content can help everyone. Thank you for your support of 123WORDPRESS.COM.

You may also be interested in:
  • Tutorial on understanding and using NULL values ​​in MySQL
  • Detailed explanation of NULL values ​​in MySQL
  • Mysql implements null value first/last method example
  • Distinguish between null value and empty character ('''') in MySQL
  • MySQL NULL value processing example detailed explanation
  • Do you know the difference between empty value and null value in mysql
  • This article takes you to explore NULL in MySQL

<<:  Vue component encapsulates sample code for uploading pictures and videos

>>:  How to build a K8S cluster and install docker under Hyper-V

Recommend

Two ways to remove the 30-second ad code from Youku video

I believe everyone has had this feeling: watching ...

Graphical explanation of the solutions for front-end processing of small icons

Preface Before starting this article, let’s do a ...

How to use the Linux more command in Linux common commands

more is one of our most commonly used tools. The ...

JavaScript implements the nine-grid click color change effect

This article shares the specific code of JavaScri...

Detailed steps to build a file server in Windows Server 2012

The file server is one of the most commonly used ...

Detailed explanation of Vue life cycle functions

Table of contents Lifecycle Functions Common life...

Experience in solving tomcat memory overflow problem

Some time ago, I submitted a product version to t...

Several ways to set the expiration time of localStorage

Table of contents Problem Description 1. Basic so...

Solution to 1045 error when navicat connects to mysql

When connecting to the local database, navicat fo...

Docker cleaning killer/Docker overlay file takes up too much disk space

[Looking at all the migration files on the Intern...

Detailed explanation of simple html and css usage

I will use three days to complete the static page...

vsftpd virtual user based on MySql authentication

Table of contents 1. MySQL installation 1.2 Creat...

Docker deploys Mysql, .Net6, Sqlserver and other containers

Table of contents Install Docker on CentOS 8 1. U...

Docker dynamically exposes ports to containers

View the IP address of the Container docker inspe...