python操作mysql数据库实例

python操作mysql

代码示例

import pymysql
import json
import time
from pymysql.converters import escape_string


# 打开数据库连接
conn = pymysql.connect(host = 'localhost',user = "root",passwd = "******",db='test', charset = 'utf8')

# 数据初始化(需要插入的变量)
url = 'https://www.zhihu.com/'
title = '123'
hot_num = '123'
topics = json.dumps([1,2,3])
concern_and_view = json.dumps([1,2,3])
time_snap = str(int(time.time()))

# sql语句(table填对应的表名)
sql_insert = 'INSERT INTO table VALUES (%s, %s, %s, %s, %s, %s)'
# 获取游标
cursor = conn.cursor()
# 转化sql语句
row = cursor.execute(sql_insert,(url,title,hot_num,topics,concern_and_view,time_snap))
# 提交插入sql
conn.commit()

# 简单查询
cursor.execute('select *from table')
all = cursor.fetchall()
print(all)

# 关闭操作
cursor.close()
conn.close()
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值