Let us first create a table −
mysql> create table DemoTable -> ( -> Id int, -> Name varchar(20) -> ); Query OK, 0 rows affected (0.93 sec)
Insert some records in the table using insert command −
mysql> insert into DemoTable values(101,'Chris'); Query OK, 1 row affected (0.25 sec) mysql> insert into DemoTable values(102,'David'); Query OK, 1 row affected (0.23 sec) mysql> insert into DemoTable values(103,'Robert'); Query OK, 1 row affected (0.16 sec)
Display all records from the table using select statement −
mysql> select *from DemoTable;
This will produce the following output−
+------+--------+ | Id | Name | +------+--------+ | 101 | Chris | | 102 | David | | 103 | Robert | +------+--------+ 3 rows in set (0.00 sec)
Following is the MySQL query to concatenate the column values with separate text −
mysql> select concat('The student id and name is= ', Id , ',' , Name, ' .') from DemoTable;
This will produce the following output −
+---------------------------------------------------------------+ | concat('The student id and name is= ', Id , ',' , Name, ' .') | +---------------------------------------------------------------+ | The student id and name is= 101,Chris . | | The student id and name is= 102,David . | | The student id and name is= 103,Robert . | +---------------------------------------------------------------+ 3 rows in set (0.01 sec)