列width
とheight
はsmallint(6)
です。
distinct
の値をwidth
からwidth asc
の順に選択し、次にheight asc
の順に値を設定します。複数のsmallint列で別個と順序を選択する
- $sql = "select * from banners group by width order by width, height asc";
- $sql = "select * from banners group by width order by width asc, height asc";
- $sql = "select * from banners group by width order by width asc, height";
何も動作: はここに私の試みです。選択は幅で細かく、高さでは適切ではありません。
いくつかのサンプルデータを表示できますか? –
と期待される出力は –
です。これはあなたに役立ちますhttp://stackoverflow.com/a/42719808/2286537 –