前端之家收集整理的这篇文章主要介绍了
sqlite的一些用法,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
type(
类型
)
、name
(
名称
)
、tbl_name
(
表名称
)
、root_page
(
引导页面
)
、sql
(
创建表的sql语句
)
select tbl_name from
sqlite_master where type = 'table'
select sql from
sqlite_master where type = 'table' and tbl_name = table_name
注意:分析sql语句,要把双引号、换行符、回车符去掉,字段之间用逗号分隔。
alter table table_name add
column
col_name data_type;
例如:alter table vul_detail add COLUMN vul_id interge;
备注:
删除表字段:
altertable
table_name
dropcolumn
col_name
;
sqlite_master、
sqlite_temp_master、sqlite_sequence、sqlite_stat1
原文链接:https://www.f2er.com/sqlite/201386.html