結合する 2 つのテーブルの結果があります。
table1:
name
product
table2:
name
product
できます
select * from table1 where product LIKE 'p%' limit 3
また:
select * from table2 where product LIKE 'p%' limit 3
しかし、結合すると、次の結果が得られます。
(select * from table1 where product LIKE 'p%' limit 3)
UNION ALL
(select * from table2 where product LIKE 'p%' limit 3)
最初のクエリからの結果のみを取得します。なにが問題ですか?