SQL
命令
有几个 sqlite3 不能用
show databases 显示数据库
show tables 显示表
desc fmls 表 fmls 的详细信息
exit 退出
create databse schools 创建数据库
drop databse schools 删除数据库
drop database if exists schools 如果存在删除数据库
use schools 使用schools数据库
create table teacher 创建表
create table if no exists teacher(id primary key autoincreament,name
text) 创建表
drop table teacher 删除表
select count(*) from tablename;