Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
テーブル :
私はクエリの作成が初めてです。今、テーブルの上の 2 行を取得することに固執しています。データは、2 つの異なる topic_id についてのみ降順で並べ替えられた日付になります。3 番目の異なる topic_id はありません。
したがって、異なる topic_id を持つ 2 つの行のみを取得したいと思います。各 topic_id の 1 つのデータは最新の日付です。
結果は次のようになります
SQLフィドルを試してください
これを使って
$qry="SELECT * FROM table_name GROUP BY TOPIC_ID ORDER BY DATE desc";