InterviewSolution
 Saved Bookmarks
    				| 1. | 
                                    5. Answer the following questions. 1. How do you delete the entire table using an SQL query? Assume the name of the table to be PROBLEMS.2. Write an SQL query to pick numbers from the field Number, display the Number in a column and its square in thenext column. The name of table is TO-BE-SQUARED. | 
                            
| 
                                   
Answer»  To DELETE an entire table including all of its ROWS, issue the drop table command followed by the tablename. drop table is DIFFERENT from deleting all of the records in the table. Deleting all of the records in the table leaves the table including column and CONSTRAINT informationExplanation:plz like  | 
                            |