Computer >> Máy Tính >  >> Lập trình >> MySQL

Làm cách nào để chọn tất cả các ký tự sau 20 ký tự đầu tiên từ một cột trong MySQL?

Đầu tiên chúng ta hãy tạo một bảng -

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

Chèn một số bản ghi vào bảng bằng lệnh chèn -

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)

Hiển thị tất cả các bản ghi từ bảng bằng câu lệnh select -

mysql> select *from DemoTable;

Điều này sẽ tạo ra kết quả sau -

+------------------------------------------------+
| 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)

Sau đây là truy vấn để chọn tất cả các ký tự sau 20 ký tự đầu tiên -

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

Điều này sẽ tạo ra kết quả sau -

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