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

MySQLのT-SQLのWITHTIESの代替

    これはあなたのために働きますか?

    select Name, Value from table where Value in (
        select distinct Value from table order by Value desc limit 3
    ) order by Value desc
    

    またはおそらく:

    select a.Name, a.Value 
    from table a
    join (select distinct Value from table order by Value desc limit 3) b
         on a.Value = b.Value
    


    1. SQLで最上位の親を見つける

    2. MySQLクエリ監視bashスクリプトを作成する

    3. SQLiteの日付と時刻

    4. SQLiteがサポートするContentProviderに基づいてListViewを更新します