sqlite没有show table的语法,但有个sqlite_master的系统表用于记录用户表的信息。
查询语句如下:
SELECT * FROM sqlite_master
WHERE type='table'
ORDER BY name;
相关文档
暂无
随便看看
畅言模块加载中
查询语句如下:
SELECT * FROM sqlite_master
WHERE type='table'
ORDER BY name;
相关文档
暂无
随便看看