I want to add two tables to my MySQL database code example
Example: how to combine 2 tables in MySQL
create table yourTableName
(
select *from yourTableName1
)
UNION
(
select *from yourTableName2
);
create table yourTableName
(
select *from yourTableName1
)
UNION
(
select *from yourTableName2
);