Python查询MySQL

Python MySQL 连接

#coding=utf-8
import sys
import MySQLdb
db = MySQLdb.connect(user='root',charset='utf8')
cur =db.cursor();
cur.execute('use test')
cur.execute('select account_name from account')
for row in cur.fetchall():
	print row[0]
	
cur.close()
db.close()

Python查询MySQL_第1张图片


Python查询MySQL_第2张图片

参考原文地址点击这里


你可能感兴趣的:(mysql,python)