Python-MySQL
Python-MySQL
1 | import sqlite3 |
查询信息
1 | result1=cursor.fetchone() #返回下一条数据 |
占位符
1 | cursor.execute('select * from user where id > ?',(1,)) |
1 | import pymysql |
批量操作
1 | data=[(...),...] |
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 The Blog of Monoceros406!