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.
重複を避けながら 2 つの類似したテーブル (同じフィールド) の内容をマージする簡単な方法は MySQL にありますか?
それらは同様のテーブルであると述べたのでUNION、を指定せずに使用できALLます。一意の行が返されるだけです。
UNION
ALL
SELECT * FROM table1 UNION SELECT * FROM table2