时间:2021-07-01 10:21:17 帮助过:16人阅读
import pymysql def test(): conn=pymysql.connect(host=‘localhost‘,port=3306,database=‘message‘,user=‘root‘,password=‘858362‘,charset=‘utf8‘) cursor=conn.cursor() cursor.execute(‘select * from classify‘) ret=cursor.fetchall() print(ret) cursor.execute(‘select * from news where id = 1‘) r=cursor.fetchone() print(r) cursor.execute(‘delete from news where id = 2‘) cursor.execute(‘select * from news‘) e=cursor.fetchall() print(e) cursor.execute(‘update news set name = "张三" where id = 3‘) cursor.execute(‘select * from news where id = 3‘) a=cursor.fetchone() print(a) cursor.execute(‘select * from news where s_news = 1‘) vv=cursor.fetchall() print(vv) cursor.execute(‘select * from news where (count>5 and is_delete = "是")‘) ew=cursor.fetchone() print(ew) conn.commit() cursor.close() conn.close() if __name__ == ‘__main__‘: test()
import pymysql # # #创建函数 def main(): #建立mysql连接 conn = pymysql.connect(host=‘127.0.0.1‘,port=3306,user=‘root‘,password=‘858362‘,database=‘python01‘,charset=‘utf8‘) #创建cursor对象,执行sql语句,声明游标对象返回dict cursor=conn.cursor(cursor=pymysql.cursors.DictCursor) cursor.execute("select * from students")#select * from students ret=cursor.fetchone() # ret=cursor.fetchall() # print(ret) # print(ret[4]) # print(ret[4][‘name‘]) print(ret[‘name‘]) cursor.close() conn.close() if __name__ == ‘__main__‘: main()
mysql与python的交互
标签:sel ctc update test ict mysq fetchall col .exe