利用 MySQL 連線列值與區分文字並在單列中顯示
我們首先建立一個表 -
mysql> create table DemoTable -> ( -> Id int, -> Name varchar(20) -> ); Query OK, 0 rows affected (0.93 sec)
使用插入命令在表中插入一些記錄 -
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)
使用 select 語句顯示錶中的所有記錄 -
mysql> select *from DemoTable;
這將生成以下輸出 -
+------+--------+ | Id | Name | +------+--------+ | 101 | Chris | | 102 | David | | 103 | Robert | +------+--------+ 3 rows in set (0.00 sec)
以下是使用 MySQL 查詢連線帶區分文字的列值 -
mysql> select concat('The student id and name is= ', Id , ',' , Name, ' .') from DemoTable;
這將生成以下輸出 -
+---------------------------------------------------------------+ | 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)
廣告