sql >> データベース >  >> RDS >> Mysql

SQL結果の最も古いエントリを削除するにはどうすればよいですか?

    これを試してください:

    select a.id,a.user,a.item_id,a.created
    from reports as a
    where a.created=(select max(created) 
                    from reports as b
                    where a.item_id=b.item_id)
    


    1. 成功したMySQL/MariaDBのバックアップおよびリカバリ戦略

    2. ElasticSearchへのMysqlクエリ

    3. SQLで文字列を大文字に変換する方法

    4. Oracleのcharデータ型のクエリ列