sqlite表结构

来源:互联网 发布:斗鱼手机登不上无网络 编辑:程序博客网 时间:2024/05/01 10:48

[获取表的数量]
select count(*) from sqlite_master where type='table';
[增加字段]
alter table addresslist add notes varchar2(64);
[ 查看表的结构《不要分号》]
.schema catalog