Answers for "how to create a table from another table in sql derby"

SQL
0

how to create a table from another table in sql derby

CREATE TABLE my_new_table AS SELECT * FROM original_table WITH NO DATA;
Posted by: Guest on September-01-2021
0

how to create a table from another table in sql derby

INSERT INTO my_new_table  SELECT * FROM orig_table.
Posted by: Guest on September-01-2021

Code answers related to "how to create a table from another table in sql derby"

Code answers related to "SQL"

Browse Popular Code Answers by Language