https://www.cnblogs.com/ghost-xyx/p/3811036.html (不錯的sql講解個人網站)
https://github.com/Darylxyx (此人的github)
選擇表中的最後一個資料,先倒序再加上limit;
mysql資料庫:
SELECT column_name FROM table_name
ORDER BY column_name DESC
LIMIT 1;
sql server資料庫:
SELECT TOP 1 column_name FROM table_name
ORDER BY column_name DESC;
Oracle資料庫:
SELECT column_name FROM table_name
ORDER BY column_name DESC
WHERE ROWNUM <=1;
聚合函數avg()和having的結合使用
我們想查詢平均年齡在20歲以上的班級