This example illustrates how to append the column values.
We use CONCAT() function to append the values of two column. In this example, we are concatenating the value of "fname" column and the value of "lname" column for each row having value 'Programmer' in the 'designation' column of the "user" table.
Table "user":
Query
|
select * from user;
|
Output
|
+---------+---------+-------------------------------+ | fname | lname | designation | +---------+---------+-------------------------------+ | sandeep | suman | Programmer | | suman | saurabh | Sr. Graphics Designer | | saurabh | ranjan | Content Writer | | ravi | kant | Software Developer | | deepak | kumar | IT Manager | | noor | ali | Content Writer | | vikash | kumar | Content Writer | | vineet | bansal | Programmer | +---------+---------+-------------------------------+ |
Query to concatenate fname and lname values:
Query
|
SELECT CONCAT(fname, " ", lname) from user where designation = 'Programmer'; |
Output
|
+---------------------------+ | CONCAT(fname, " ", lname) | +---------------------------+ | sandeep suman | | vineet bansal | +---------------------------+
|
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: MySql Append Codes
Post your Comment