SQLite判断表是否存在:只要查看sqlite_master表中是否存在表名记录。 SELECT count(*) FROM sqlite_master WHERE type='table' AND name='tableName';