DBMS Interview Q&A Part- 2
Q1. Can you create a table without using create command ? A. Yes, we can create table with the help of SELECT INTO statement. Itcopies content of one table to another table. However, there should beat least one table from where we can copy content.Example : Copying all columns : select * into new_table from … Read more