tableName
|name | header | date |
|--------|--------|-----------|
|abc | def | 2016-08-16|
|pqr | xyz | 2015-11-20|
我想寫一個查詢來顯示最早輸入的名稱。如何顯示最早發佈的元素?
select name from tableName where date(date) = min(date)
遇到錯誤。
我在網上搜索了答案,但找不到我在找的東西。任何有關此事的建議和幫助都會受到歡迎。
請參閱:[爲什麼我應該爲我認爲是非常簡單的SQL查詢提供一個MCVE?](https://meta.stackoverflow.com/questions/333952/why-should-i-provide-an -mcve-for-what-seems-to-what-seems-a-very-simple-sql-query) – Strawberry
這裏的答案適用於你的問題(swap max with min)https://stackoverflow.com/questions/19432913/select-info-from-table-where-row-has-max-date/19433107#19433107可能會矯枉過正,寶寶的答案很好。 – Twelfth