我需要你的帮助!
我的数据库上有这个。
table name: tblClient
-------------------------------------------------
id | stars1 | stars2 | stars3 |
-------------------------------------------------
1 | 5 | 0 | 0 |
2 | 4 | 0 | 0 |
3 | 0 | 5 | 0 |
4 | 0 | 4 | 0 |
5 | 0 | 0 | 5 |
-------------------------------------------------
产生此输出的 SQL 语句是什么?
-------------------------------------------------
id | stars1 | stars2 | stars3 |
-------------------------------------------------
1 | 5 | 0 | 0 |
3 | 0 | 5 | 0 |
5 | 0 | 0 | 5 |
2 | 4 | 0 | 0 |
4 | 0 | 4 | 0 |
-------------------------------------------------
我已经这样做了,SELECT * FROM tblClient ORDER BY stars1 DESC,stars2 DESC,stars3 DESC,id ASC
但似乎输出错误。
任何帮助,将不胜感激 :)