How to copies data from one table and inserts it into an existing table in SQL

2 Answers

0 votes
INSERT INTO text (test)
SELECT category FROM all_info

 



answered Sep 21, 2015 by avibootz
0 votes
INSERT INTO text (test)
SELECT category FROM s4i_all_info
WHERE category LIKE '%ab%'

 



answered Sep 21, 2015 by avibootz

Related questions

...