Đầ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.39 sec)
Chèn một số bản ghi vào bảng bằng lệnh chèn -
mysql> insert into DemoTable values('Introduction to MySQL'); Query OK, 1 row affected (0.11 sec) mysql> insert into DemoTable values('Introduction to Java'); Query OK, 1 row affected (0.09 sec) mysql> insert into DemoTable values('Introduction to SQL'); Query OK, 1 row affected (0.10 sec) mysql> insert into DemoTable values('Introduction to Python'); Query OK, 1 row affected (0.10 sec) mysql> insert into DemoTable values('Introduction to SQL'); Query OK, 1 row affected (0.09 sec) mysql> insert into DemoTable values('Introduction to Java'); Query OK, 1 row affected (0.13 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 | +------------------------+ | Introduction to MySQL | | Introduction to Java | | Introduction to SQL | | Introduction to Python | | Introduction to SQL | | Introduction to Java | +------------------------+ 6 rows in set (0.00 sec)
Sau đây là truy vấn để triển khai HAVING LENGTH (trường) trong MySQL -
mysql> select *from DemoTable group by length(Title) having length(Title) < 21;
Điều này sẽ tạo ra kết quả sau -
+----------------------+ | Title | +----------------------+ | Introduction to SQL | | Introduction to Java | +----------------------+ 2 rows in set (0.00 sec)