如何在 MySQL 的列中選擇前 20 個字元之後的全部字元?


讓我們先建立一個表 −

mysql> create table DemoTable
(
   Title text
);
Query OK, 0 rows affected (0.86 sec)

使用 insert 命令在表中插入一些記錄 −

mysql> insert into DemoTable values('C is a good programming language to start');
Query OK, 1 row affected (0.18 sec)
mysql> insert into DemoTable values('Java is good with data structure and algorithm');
Query OK, 1 row affected (0.19 sec)
mysql> insert into DemoTable values('Coding is very important');
Query OK, 1 row affected (0.20 sec)

使用 select 語句顯示錶中的所有記錄 −

mysql> select *from DemoTable;

這將生成以下輸出 −

+------------------------------------------------+
| Title                                          |
+------------------------------------------------+
| C is a good programming language to start      |
| Java is good with data structure and algorithm |
| Coding is very important                       |
+------------------------------------------------+
3 rows in set (0.00 sec)

以下是選擇前 20 個字元之後的所有字元的查詢 −

mysql> select substring(Title from 20) from DemoTable;

這將生成以下輸出 −

+-----------------------------+
| substring(Title from 20)    |
+-----------------------------+
| ming language to start      |
| ata structure and algorithm |
| rtant                       |
+-----------------------------+
3 rows in set (0.00 sec)

更新於: 2019 年 9 月 26 日

191 次瀏覽

Kickstart Your 職業生涯

完成課程以獲得認證

開始使用
廣告
© . All rights reserved.