发布网友
共1个回答
热心网友
CREATE TABLE sqlite_master (
type text,
name text,
...
);
输入这一段就是用于新建一个表。
sqlite_master是表的名称,
type是第一列,类型为text
name是第二列,类型为text。