涉及到的SQL语句如下:
判断表是否存在:
sql
select count(*) as A from information_schema.tables where table_name = 'test' and table_schema ='test1'
删除数据库表
sql
"DROP TABLE IF EXISTS test"