SELECT * FROM sqlite_master WHERE type='table' AND name='tblSearchPoint';
sqlite 判断临时表是否存在
SELECT * FROM sqlite_temp_master WHERE type='table' AND name='tmpSearchPoint';
sqlite 创建临时表
create temporary table tmpSearchPoint(Name)
删除临时表
drop table tmpSearchPoint
原文链接:https://www.f2er.com/sqlite/201365.html