Select the correct statement which will return all the rows from the Table and then also deletes the Table_Add table?

5. Select the correct statement which will return all the rows from the Table and then also deletes the Table_Add table?

  1. SELECT * FROM Table; DROP TABLE Table_Add
  2. SELECT * WHERE Table; DROP TABLE Table_Add
  3. SELECT * FROM Table; DELETE TABLE Table_Add
  4. SELECT * WHERE Table; DELETE TABLE Table_Add

Answer: A) SELECT * FROM Table; DROP TABLE Table_Add

Explanation:

The correct statement which will return all the rows from the Table and then also deletes the Table_Add table is – SELECT * FROM Table; DROP TABLE Table_Add.

Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.