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.
SQLクエリを使用して、設定値(ステータス= 1)に従って最初の3行を選択し、残りを降順で選択する方法..
「9」行のテーブル「table1」があるとします。 0、8->0、9->1
最初の 3 つはステータス '1' に従って、残りの '6' 行は通常どおり必要です... 出力は 3 5 9 になります。最初の 3 つはステータス 1 に従って来ます。 5 9 1 2 4 6 7 8
Select sn,status From myTable Order By status DESC,sn