Answers for "how to relationship query two different tables in MySQL"

SQL
0

how to combine 2 tables in MySQL

create table yourTableName
(
   select *from yourTableName1
)
UNION
(
   select *from yourTableName2
);
Posted by: Guest on October-20-2020
0

how to relationship query two different tables in MySQL

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
Posted by: Guest on January-26-2021

Code answers related to "how to relationship query two different tables in MySQL"

Code answers related to "SQL"

Browse Popular Code Answers by Language