Member since
06-21-2017
6
Posts
0
Kudos Received
0
Solutions
06-23-2017
07:34 AM
If you see the error, it is clearly mentioned that 'test' schema is already exist, thats why u got that error. But while dropping the schema , it must be empty.
... View more
06-22-2017
04:03 AM
CREATE TABLE table2 LIKE table1; INSERT INTO table2 SELECT * FROM table1; These are sql queries which can be used but not working with base.. By d way nice question. I am also trying for it.
... View more