I have the following SQL code but it's not working, it says syntax error:
EXPLAIN
DROP TABLE cool_table
Does anyone know why?
I wrote this question because I was taught to always use EXPLAIN before running a query on the database to avoid running a task that's too much for the database processing, no one told me about don't use EXPLAIN before DROP. Then I had this question about why is EXPLAIN not working with the DROP.