Để thiết lập thứ tự kỷ lục cụ thể, hãy sử dụng ĐẶT HÀNG BẰNG CÁCH THÍCH. Đầu tiên chúng ta hãy tạo một bảng−
mysql> create table DemoTable808(Value varchar(100)); Query OK, 0 rows affected (0.61 sec)
Chèn một số bản ghi vào bảng bằng lệnh chèn -
mysql> insert into DemoTable808 values('smith'); Query OK, 1 row affected (0.13 sec) mysql> insert into DemoTable808 values('Adamsmith'); Query OK, 1 row affected (0.18 sec) mysql> insert into DemoTable808 values('Carolsmith'); Query OK, 1 row affected (0.20 sec) mysql> insert into DemoTable808 values('smithJohn'); Query OK, 1 row affected (0.16 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 DemoTable808;
Điều này sẽ tạo ra kết quả sau -
+------------+ | Value | +------------+ | smith | | Adamsmith | | Carolsmith | | smithJohn | +------------+ 4 rows in set (0.00 sec)
Sau đây là truy vấn để đặt thứ tự cụ thể -
mysql> select *from DemoTable808 order by case when Value like 'smith%' then 0 else 1 end asc,Value asc;
Điều này sẽ tạo ra kết quả sau -
+------------+ | Value | +------------+ | smith | | smithJohn | | Adamsmith | | Carolsmith | +------------+ 4 rows in set (0.00 sec)