Mysql笔记

pymysql的使用:

import pymysql.cursors
#连接配置信息
config = {
'host':'127.0.0.1',
'port':3306,
'user':'root',
'password':'2778142138',
'db':'NER',
'charset':'utf8',
'cursorclass':pymysql.cursors.DictCursor,
}
# 创建连接
connection = pymysql.connect(**config)
cursor = connection.cursor()
sql = "INSERT INTO sentence_table (name, sentence) VALUES ('%s', '%s')"%(company_name,sentence)

print(sentence)
cursor.execute(sql)
connection.commit()

truncate table table_name;  清空表
delete * from table_name;  删除表
 



原文地址:https://www.cnblogs.com/the-wolf-sky/p/10875876.html