Để sắp xếp nhiều cột cùng một lúc, bạn có thể sử dụng mệnh đề ORDER BY. Sau đây là cú pháp -
select yourColumnName1,yourColumnName2,yourColumnName3 from yourTableName order by yourColumnName2,yourColumnName3;
Đầu tiên chúng ta hãy tạo một bảng -
mysql> create table doubleSortDemo -> ( -> StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY, -> StudentName varchar(100), -> StudentCountryName varchar(10) -> ); Query OK, 0 rows affected (0.71 sec)
Sau đây là truy vấn để chèn các bản ghi trong bảng bằng cách sử dụng lệnh insert -
mysql> insert into doubleSortDemo(StudentName,StudentCountryName) values('John','AUS'); Query OK, 1 row affected (0.21 sec) mysql> insert into doubleSortDemo(StudentName,StudentCountryName) values('Sam','UK'); Query OK, 1 row affected (0.20 sec) mysql> insert into doubleSortDemo(StudentName,StudentCountryName) values('Bob','US'); Query OK, 1 row affected (0.16 sec) mysql> insert into doubleSortDemo(StudentName,StudentCountryName) values('Carol','UK'); Query OK, 1 row affected (0.32 sec) mysql> insert into doubleSortDemo(StudentName,StudentCountryName) values('David','AUS'); Query OK, 1 row affected (0.19 sec) mysql> insert into doubleSortDemo(StudentName,StudentCountryName) values('Larry','UK'); Query OK, 1 row affected (0.15 sec)
Sau đây là truy vấn để hiển thị tất cả các bản ghi từ bảng bằng cách sử dụng câu lệnh select -
mysql> select * from doubleSortDemo;
Điều này sẽ tạo ra kết quả sau -
+-----------+-------------+--------------------+ | StudentId | StudentName | StudentCountryName | +-----------+-------------+--------------------+ | 1 | John | AUS | | 2 | Sam | UK | | 3 | Bob | US | | 4 | Carol | UK | | 5 | David | AUS | | 6 | Larry | UK | +-----------+-------------+--------------------+ 6 rows in set (0.00 sec)
Sau đây là truy vấn để thực hiện sắp xếp MySQL trên nhiều cột, tức là quốc gia và tên của sinh viên -
mysql> select StudentId,StudentName,StudentCountryName from doubleSortDemo -> order by StudentCountryName,StudentName;
Điều này sẽ tạo ra kết quả sau -
+-----------+-------------+--------------------+ | StudentId | StudentName | StudentCountryName | +-----------+-------------+--------------------+ | 5 | David | AUS | | 1 | John | AUS | | 4 | Carol | UK | | 6 | Larry | UK | | 2 | Sam | UK | | 3 | Bob | US | +-----------+-------------+--------------------+ 6 rows in set (0.00 sec)