0
posts
から12の投稿を選択します。 12人がいない場合は、parchive
テーブルから欠落を選択する必要があります。UNIONとORDER BYの不正な使用
$stmt = $db->query("SELECT * FROM posts where status='public' and user='public' order by inde asc limit 12 offset " . $offset);
$count1 = $stmt->rowCount();
if ($count1 < 12){
$diff = 12 - $count1;
$stmt = $db->query("SELECT * FROM posts where status='public' and user='public' order by inde asc limit 12 offset " . $offset .
" union select * from parchive where status='public' order by date desc limit " . $diff);
}
エラー:
General error: 1221 Incorrect usage of UNION and ORDER BY in...
任意のヘルプ?
それは動作します。どうもありがとう。 – bonaca