1,在 Python 中使用 sqlite3 连接数据库,插入语句的展位符为 "?"
cur.execute("insert into user values(?,?,?)",(1,2,"zhang"))
2、在 Python 中,使用 pymysql 连接 mysql 数据库,插入语句的占位符为 "%s"
cursor.execute("insert into user values(%s, %s, %s)",(1,80,"zhang"))
1,在 Python 中使用 sqlite3 连接数据库,插入语句的展位符为 "?"
cur.execute("insert into user values(?,?,?)",(1,2,"zhang"))
2、在 Python 中,使用 pymysql 连接 mysql 数据库,插入语句的占位符为 "%s"
cursor.execute("insert into user values(%s, %s, %s)",(1,80,"zhang"))
本文标题:Python数据库操作 SQL占位符
本文链接:https://www.haomeiwen.com/subject/aarxbftx.html
网友评论