Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

mysql copy table to another table

CREATE TABLE new_table 
SELECT col1, col2, col3 
FROM
    existing_table
WHERE
    conditions;
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #mysql #copy #table #table
ADD COMMENT
Topic
Name
7+4 =