SQLite3——1
linux 命令行下的数据库操作
启动SQLite数据库
sqlite3 mydb.txt
创建一个表
create table student(id int,name char[20], number int);
添加内容
Insert into stuednt value(1000,“wqw”,60);
查询
Select * from student;
Select *from student where number=60;
删除
Delete from student where number=60;
修改属性内容
Update student set name="www"where id=1000;
添加属性
alter table student add column class int;
删除表格
Drop table student;
表格重新命名
alter table rename to stu;
删除其中信息
delete from student where name=“wqw”;
基本操作
数据定义语言(DDL):例如:CREATE、DROP、ALTER等语句。
数据操作语言(DML):例如:INSERT(插入)、UPDATE(修改)、DELETE(删除)语句。
数据查询语言(DQL):例如:SELECT语句
数据控制语言(DCL):例如:GRANT、REVOKE、COMMIT、ROLLBACK等语句