cara menggabungkan 2 tabel di mysql
create table yourTableName
(
select *from yourTableName1
)
UNION
(
select *from yourTableName2
);
Smiling Sable
create table yourTableName
(
select *from yourTableName1
)
UNION
(
select *from yourTableName2
);
SELECT product_name, customer.name, date_of_sale
FROM sales, product, customer
WHERE product.product_id = sales.product_id
AND customer.customer_id >= sales.customer_id LIMIT 0, 30