日誌11月18日
今天學習資料庫查詢操作
import MySQLdb
# 開啟資料庫連線
db = MySQLdb.connect("localhost", "testuser", "test123", "TESTDB", charset='utf8' )
# 使用cursor()方法獲取操作遊標
cursor = db.cursor()
# SQL 查詢語句
sql = "SELECT * FROM EMPLOYEE \
WHERE INCOME > %s" % (1000)
try:
# 執行SQL語句
cursor.execute(sql)
# 獲取所有記錄列表
results = cursor.fetchall()
for row in results:
fname = row[0]
lname = row[1]
age = row[2]
sex = row[3]
income = row[4]
# 列印結果
print "fname=%s,lname=%s,age=%s,sex=%s,income=%s" % \
(fname, lname, age, sex, income )
except:
print "Error: unable to fecth data"
# 關閉資料庫連線
db.close()
相關文章
- 日誌11月4日
- 日誌11月24日
- 110月18日
- 11月11日—11月17日共有18款遊戲開測|GameRes遊戲GAM
- 11月26實驗室日誌
- 日誌12月16日
- 11月18日—11月24日共有58款遊戲開測|GameRes遊戲GAM
- 11月18日—11月24日共有22款遊戲開測|GameRes遊戲GAM
- 2024.11.18 日軟體工程學習日誌軟體工程
- 11月11日
- 4月18日
- 3月18日
- 5月18日
- 9月18日
- [20181116]18c DML 日誌優化.txt優化
- 6月11日
- 3月11日
- 10月11日
- 4月11日
- 5月11日
- 7月11日
- 11月12日
- 11月13日
- 11月15日
- 11月6日
- 11月8日
- 11月14日
- Oracle 11g RAC檢視ASM日誌、grid日誌和DB日誌OracleASM
- Qtum量子鏈週報(11月19日-11月25日)QT
- 11月11日總結
- 11g rac 日誌
- 11.3 學習日誌
- 3月18日總結
- Qtum量子鏈週報(3月18日-3月24日)QT
- 11月11日—11月17日共有46款遊戲開測|GameRes遊戲GAM
- mysql之 日誌體系(錯誤日誌、查詢日誌、二進位制日誌、事務日誌、中繼日誌)MySql中繼
- 刪除oracle 11g的警告日誌和監聽日誌Oracle
- ORACLE 11G RAC 增加日誌組及增大日誌檔案Oracle