Question: You manage a database with a table "customers". You created a temporary table also called "customers" with which you are working for the duration of your session. You need to recreate the temporary table with different specs. Which command do you need to run first?

  1. `create temporary table customers;`
  2. `drop temp table customers;`
  3. `drop table customers;`
  4. `drop temporary table customers;`

Answer: The correct answer of the above question is Option D:`drop temporary table customers;`