Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

how to combine 2 tables in MySQL

create table yourTableName
(
   select *from yourTableName1
)
UNION
(
   select *from yourTableName2
);
Source by www.tutorialspoint.com #
 
PREVIOUS NEXT
Tagged: #combine #tables #MySQL
ADD COMMENT
Topic
Name
6+9 =