Home Tutorial Php Sql MySQL Append Column

 
 

MySQL Append Column
Posted on: December 9, 2010 at 12:00 AM
This example illustrates how to append two column value of a table.

MySQL Append Column

This example illustrates how to append two column value of a table.

In this example create a select query to append the data of four column.

Table

+-----------+-----------+----------+----------------------------------+
| studentid | sectionid | courseid | time                             |
+-----------+-----------+----------+----------------------------------+
| 3         | 3         | 3        | Mon 14:30-16:00                  |
| 2         | 2         | 5        | Mon 11:30-12:00, Thu 09:00-11:00 |
| 1         | 1         | 6        | Mon 09:30-11:00                  |
+-----------+-----------+----------+----------------------------------+

Query

select studentid, CONCAT(studentid, sectionid, courseid, time) FROM mca;
Output
+-----------+----------------------------------------------+
| studentid | CONCAT(studentid, sectionid, courseid, time) |
+-----------+----------------------------------------------+
| 3         | 333Mon 14:30-16:00                           |
| 2         | 225Mon 11:30-12:00, Thu 09:00-11:00          |
| 1         | 116Mon 09:30-11:00                           |
+-----------+----------------------------------------------+

Related Tags for MySQL Append Column:


Ask Questions?

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.