Ex: Server SQL mode. If the ANSI_QUOTES SQL mode is enabled, you can quote identifiers withdouble quotes (although backticks still are permitted).
CREATE TABLE "my table" ("my-int-column" INT);
I have tried the drop, and described like this:
describe 'my table';
drop table 'my table';
describe my table;
drop table my table;
Syntax error.