Answers for "how to combine 2 tables in MySQL"

SQL
1

mysql join two tables

SELECT user_id, user_name
FROM users
UNION
SELECT organization_id, organization_name
FROM organizations
Posted by: Guest on December-07-2020
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

Code answers related to "how to combine 2 tables in MySQL"

Code answers related to "SQL"

Browse Popular Code Answers by Language