MySQL数据备份 | 与python的交互 | MySQL
Posted 胡说八道
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL数据备份 | 与python的交互 | MySQL相关的知识,希望对你有一定的参考价值。
mysqldump -uroot -p 数据库名 > python.sql; # 按提示输入密码 连接mysql,创建新的数据库 退出连接,执行如下命令 mysql -uroot -p 新数据库名 < python.sql # 根据提示输入mysql密码
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的主要内容,如果未能解决你的问题,请参考以下文章