时间:2021-07-01 10:21:17 帮助过:27人阅读
from pymysql import * def main(): # 获取要查询的商品名称 find_name = input("请输入要查询的商品类型名:") # 创建链接对象 conn = connect(host=‘localhost‘,port=3306,user=‘root‘,password=‘mysql‘,database=‘jing_dong‘,charset=‘utf8‘) # 创建游标 cs = conn.cursor() # 定义一个变量,用来存储要执行的sql语句 sql = """select * from goods_cates where name="%s";""" % find_name print("=======>%s<=========" % sql) cs.execute(sql) for temp_info in cs.fetchall(): print(temp_info) # 关闭游标 cs.close() # 关闭链接 conn.close() if __name__ == "__main__": main()
MySQL数据备份 | 与python的交互 | MySQL
标签:int pymysql from word root 根据 local sql语句 数据库