sqlite>.tables COMPANY test.COMPANY 这意味着 COMPANY 表已存在数据库中,接下来让我们把它从数据库中删除,如下:sqlite>DROP TABLE COMPANY;sqlite>现在,如果尝试.TABLES 命令,那么将无法找到 COMPANY 表了:sqlite>.tables sqlite>...
表、视图、索引的创建、修改、删除操作等 一、表的创建 1、创建表 create if not exists table student(StuID integer);2、创建带有缺省值的数据表:create table if not exists schoolTable(schID integer default 0,schName varchar ...