字典是
keywords_dict{}
{'茉莉花茶泡多久': 10, '苦丁长什么样子图片': 5, '茶叶茶加上蜂糖能喝吗': 1, '古丈毛尖多少钱一斤': 29, '干玫瑰花过期': 1}
我用的是pymysql链接的数据库
之前统计的数据是单行的,所以用这个
cur.execute('insert into pctongji(yesterday_str, item, question, topic, people, celebrity, brand, category, article) values(%s,%s,%s,%s,%s,%s,%s,%s,%s)', (yesterday_str, category_dict['item'], category_dict['question'], category_dict['topic'], category_dict['people'], category_dict['celebrity'], category_dict['brand'], category_dict['category'], category_dict['article']))
现在是多行的要怎么存入到数据库,
数据库有两个字段,分别是keywords、跟count,分别对应上面字典中的内容,
sql语句要怎么写,想要以天数的形式存入
自己动手丰衣足食
建议使用 executemany