1.2.3.6.Combine the Tables - UNION
select union table
select * from people union select * from people2;

union兩個欄位不同的table
select id, name, city from people union select * from people2;
Previous1.2.3.5.Copy Table with INSERT INTO SELECTNext1.2.4.Few things that Keeps the Database in Shape
Last updated
Was this helpful?