進入沙盒路徑
建立stu.sql資料庫
建立表create table if not exists student (id integer primary key autoincrement,name varchar[20] not null,address varchar[100],image blob);
檢視自己的建立語句
插入資料
insert into student(name,address) values("huoran","ruanjianyuan");
查詢select * from student where id = 2;
select name from student where id = 2;
更新update student set address = "nanjing" where name = "baoyun";
刪除delete from student where id = 1;
刪除表drop table student;
補充:sqlite>select *from company limit 3offset 2;
從哪行開始至少幾行
進入沙盒路徑
建立stu.sql資料庫
建立表create table if not exists student (id integer primary key autoincrement,name varchar[20] not null,address varchar[100],image blob);
檢視自己的建立語句
插入資料
insert into student(name,address) values("huoran","ruanjianyuan");
查詢select * from student where id = 2;
select name from student where id = 2;
更新update student set address = "nanjing" where name = "baoyun";
刪除delete from student where id = 1;
刪除表drop table student;
補充:sqlite>select *from company limit 3offset 2;
從哪行開始至少幾行
使用sqlite3 模組操作sqlite3資料庫
python內建了sqlite3模組,可以操作流行的嵌入式資料庫sqlite3。如果看了我前面的使用 pymysql 操作mysql資料庫這篇文章就更簡單了。因為它們都遵循pep 249,所以操作方法幾乎相同。廢話就不多說了,直接看 吧。都差不多,首先匯入模組,然後建立連線,然後獲取游標物件,之後利...
sqlite3基本操作
sqlite3對很多通過的sql語句都支援,像select,update,insert,delete等等都支援地很好,只要懂sql語句就可以用sqlite3。1,下面是幾個比較重要的api函式 開啟資料庫,如果不存在則建立乙個 int sqlite3 open const char sqlite3 ...
sqlite3基本操作
1.sqlite3 db.sqlite3 進入名為db.sqlite3的資料庫 2.sqlite tables 檢視所有表 3 sqlite schema 表名 檢視表結構 4 sqlite database 檢視目前掛載的資料庫 5 sqlite quit 退出資料庫 6 root wzz sql...