pande
@pande1104
說
Mon, Jun 19, 2023 6:44 PM
Mon, Jun 19, 2023 7:45 PM
[讀書學習] 《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
@pande1104
想
Mon, Jun 19, 2023 6:46 PM
花絮比正題多
pande
@pande1104
覺得
Mon, Jun 19, 2023 6:47 PM
python內功大進展的一日
pande
@pande1104
說
Mon, Jun 19, 2023 6:50 PM
[網路資源] SQLite Viewer
SQLite Viewer
不用灌資料庫軟體,就可以學習、研究如何使用資料庫
pande
@pande1104
說
Mon, Jun 19, 2023 7:06 PM
Tue, Jun 20, 2023 4:08 PM
一些練習到的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
@pande1104
說
Mon, Jun 19, 2023 7:14 PM
[python]
import sqlite3
.connect("database file name")
- .cursor()
- .cursor().execute("sqlite command", tuple) (?: replacement)
- .commit()
- .close()
載入新的回覆
第一篇 Python
1-8 資料庫
. 1-8-1 建立資料表
. 1-8-2 資料異動
. 1-8-3 資料查詢
[花絮] 實時執行python小技巧:tab鍵查詢保留字
[花絮] 比較'''注解'''、"注解"跟#注解的異同
[花絮] 網路資源:開啟資料庫.sqlite檔
[花絮] python語法小技巧:以","接收多值-省略tuple符號
Raspberry_pi Python 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 '%'
查詢指定欄位內容含特徵字串的資料
import sqlite3
.connect("database file name")
- .cursor()
- .cursor().execute("sqlite command", tuple) (?: replacement)
- .commit()
- .close()