Table commands

Drop if exists

If table exists drop table then create it; if it does not exist just create it

DROP TABLE IF EXISTS tablename;

DROP TABLE IF EXISTS 'table1', 'table2';

Aria engine

View commands

Drop if exists

DROP VIEW IF EXISTS 'view1', 'view2';