car テーブルから 10 台の最新の車を取得する単一の選択を行う方法はありますか?そのうちの 5 台は赤で、5 台は青です?
私が思いつくことができる最善の方法は、2 つの選択とプログラムによるマージです。
red = query("select * from cars where color = 'red' order by when desc limit 5")
blue = query("select * from cars where color = 'blue' order by when desc limit 5")
all = merge(red, blue)