

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Concatenate some of the column values in a single line with MySQL and prefix a particular string “MR.” to every string
The CONCAT() method would be used to concatenate “MR” to every string, whereas GROUP_CONCAT() to concatenate some of the column values in a single line.
Let us first see an example and create a table −
mysql> create table DemoTable799( UserId int, UserName varchar(100), UserAge int ); Query OK, 0 rows affected (0.56 sec)
Insert some records in the table using insert command −
mysql> insert into DemoTable799 values(101,'John',21); Query OK, 1 row affected (0.18 sec) mysql> insert into DemoTable799 values(102,'Chris',26); Query OK, 1 row affected (0.22 sec) mysql> insert into DemoTable799 values(101,'Robert',23); Query OK, 1 row affected (0.15 sec) mysql> insert into DemoTable799 values(103,'David',24); Query OK, 1 row affected (0.10 sec) mysql> insert into DemoTable799 values(101,'Mike',29); Query OK, 1 row affected (0.18 sec)
Display all records from the table using select statement −
mysql> select *from DemoTable799;
This will produce the following output −
+--------+----------+---------+ | UserId | UserName | UserAge | +--------+----------+---------+ | 101 | John | 21 | | 102 | Chris | 26 | | 101 | Robert | 23 | | 103 | David | 24 | | 101 | Mike | 29 | +--------+----------+---------+ 5 rows in set (0.00 sec)
Here is the query to concatenate strings −
mysql> select UserId,GROUP_CONCAT(CONCAT('MR.', UserName)) from DemoTable799 group by UserId;
This will produce the following output −
+--------+---------------------------------------+ | UserId | GROUP_CONCAT(CONCAT('MR.', UserName)) | +--------+---------------------------------------+ | 101 | MR.John,MR.Robert,MR.Mike | | 102 | MR.Chris | | 103 | MR.David | +--------+---------------------------------------+ 3 rows in set (0.00 sec)
- Related Questions & Answers
- Concatenate the column values with separate text in MySQL and display in a single column
- How to concatenate all values of a single column in MySQL?
- Concatenate all the columns in a single new column with MySQL
- How to concatenate two column values into a single column with MySQL. The resultant column values should be separated by hyphen
- How can we update MySQL table after removing a particular string from the values of column?
- Fetch a specific record from a column with string values (string, numbers and special characters) in MySQL
- MySQL add “prefix” to every column?
- Concatenate string with numbers in MySQL?
- How to find string count of a particular id in a column using a MySQL query?
- Join Map values into a single string with JavaScript?
- Concatenate multiple rows and columns in a single row with MySQL
- Extract all the values and display in a single line with MongoDB
- Concatenate date and time from separate columns into a single column in MySQL
- How to check if a string starts with a specified Prefix string in Golang?
- How to find and replace string in MySQL database for a particular string only?
Advertisements