Đang chuẩn bị nút TẢI XUỐNG, xin hãy chờ
Tải xuống
Trong truy vấn này, ORDER BY id nơi các hồ sơ theo trình tự, dựa trên số id của họ. Mẹo: Để sắp xếp các bản ghi trong thứ tự đảo ngược số hoặc ngược lại theo thứ tự chữ cái, thêm, giảm dần vào cuối. Đối với loại, ví dụ: SELECT đầu tiên, từ tên Sắp xếp theo mới nhất giảm dần, tùy chọn, giảm dần đề cập đến từ | 3. Type SELECT id first last FROM name ORDER BY id The window should look like this In this query ORDER BY id places the records in numeric order based on their id numbers. Tip To arrange records in reverse numeric or reverse alphabetical order add DESC on the end. For instance type SELECT first last FROM name ORDER BY last DESC The DESC option refers to the word descending. It tells MySQL to order things descending from high to low instead of the default low to high. 38 GETTING STARTED WITH MYSQL 4. Type q then press ENTER. This closes your MySQL database connection. You are now logged out of the MySQL server the mysql prompt is gone. I first I last I I John I Adams I I Thomas I Jefferson I I James I Madison I I George I Washington I -I--------1------------ 4 rows in set o.03 sec mysql SELECT id first last FROM name ORDER BY id I id I first I last I ----F-------- ------------- I 1 I George I Washington I I 2 I John I Adams I I 3 I Thomas I Jefferson I I 4 I James I Madison I ---- -------- ------------- 4 rows in set o. oo sec __ GETTING STARTED WITH MYSQL 39 5. Type exit then press ENTER. The Konsole window should close. 40 GETTING STARTED WITH .