Bạn có thể sử dụng LEFT () từ MySQL để hiển thị một số ký tự từ toàn bộ giá trị trong MySQL. Sau đây là cú pháp:
select left(yourColumnName ,200 ) AS anyAliasName from yourTableName;
Đầu tiên chúng ta hãy tạo một bảng:
mysql> create table DemoTable (Paragraph longtext); Query OK, 0 rows affected (0.71 sec)
Sau đây là truy vấn để chèn bản ghi trong bảng bằng cách sử dụng lệnh insert:
mysql> insert into DemoTable values('Introduction to Java,Introduction to C,Introduction to C++,Introduction to Spring,Introduction to Hibernate,Introduction to Python,Introduction to MySQL,Introduction to MongoDB,Introduction to SQL Server,Introduction to ASP.net,Introduction to JSF'); Query OK, 1 row affected (0.13 sec)
Sau đây là truy vấn để hiển thị các bản ghi từ bảng bằng lệnh select:
mysql> select *from DemoTable;
Điều này sẽ tạo ra kết quả sau:
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Paragraph | +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Introduction to Java,Introduction to C,Introduction to C++,Introduction to Spring,Introduction to Hibernate,Introduction to Python,Introduction to MySQL,Introduction to MongoDB,Introduction to SQL Server,Introduction to ASP.net,Introduction to JSF | +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ 1 row in set (0.00 sec)
Sau đây là truy vấn để chỉ hiển thị 200 ký tự từ tổng giá trị:
mysql> select left(Paragraph ,200) AS `200Characters` from DemoTable;
Điều này sẽ tạo ra kết quả sau chỉ hiển thị 200 ký tự đầu tiên:
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | 200Characters | +----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Introduction to Java,Introduction to C,Introduction to C++,Introduction to Spring,Introduction to Hibernate,Introduction to Python,Introduction to MySQL,Introduction to MongoDB,Introduction to SQL Ser | +----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ 1 row in set (0.00 sec)