pande
[讀書學習] 《AIOT與OpenCV實戰應用(第三版):Python、樹莓派、物聯網與機器視覺》
第一篇 Python
1-8 資料庫
. 1-8-1 建立資料表
. 1-8-2 資料異動
. 1-8-3 資料查詢

[花絮] 實時執行python小技巧:tab鍵查詢保留字
[花絮] 比較'''注解'''"注解"#注解的異同
[花絮] 網路資源:開啟資料庫.sqlite檔
[花絮] python語法小技巧:以","接收多值-省略tuple符號

Raspberry_pi Python SQLite
pande
花絮比正題多
pande
python內功大進展的一日
pande
[網路資源] SQLite Viewer
SQLite Viewer
不用灌資料庫軟體,就可以學習、研究如何使用資料庫
pande
一些練習到的SQLite指令

create table tablename (colomnname1 datatype primary key, colomnname2 datatype,colomnname3 datatype)
資料庫建立表格

insert into tablename values (?1, ?2, ?3)
資料庫新增一筆資料

select * from tablename limit 0,30
查詢0~30筆資料

select * from tablename where colomnname like '%'
查詢指定欄位內容含特徵字串的資料
pande
[python]
import sqlite3
.connect("database file name")
- .cursor()
- .cursor().execute("sqlite command", tuple) (?: replacement)
- .commit()
- .close()
載入新的回覆