sqlite 判断表 或 临时表 是否存在

前端之家收集整理的这篇文章主要介绍了sqlite 判断表 或 临时表 是否存在前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
sqlite 判断表是否存在
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

猜你在找的Sqlite相关文章