查看SQLite所有对象

前端之家收集整理的这篇文章主要介绍了查看SQLite所有对象前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
--所有对象
select * from sqlite_master;

--所有表:
SELECT name FROM sqlite_master
WHERE type='table'
ORDER BY name;

--所有视图:
SELECT name FROM sqlite_master
WHERE type='view'
ORDER BY name;
原文链接:https://www.f2er.com/sqlite/202115.html

猜你在找的Sqlite相关文章