how to create a table from another table in sql derby

Solutions on MaxInterview for how to create a table from another table in sql derby by the best coders in the world

showing results for - "how to create a table from another table in sql derby"
Elías
05 Jul 2019
1CREATE TABLE my_new_table AS SELECT * FROM original_table WITH NO DATA;
2
Honey
01 Apr 2019
1INSERT INTO my_new_table  SELECT * FROM orig_table.
2
similar questions