我有一个数据库是从
CREATE TABLE `ip` (
`idip` int(11) NOT NULL AUTO_INCREMENT,
`ip` decimal(45,0) DEFAULT NULL,
`mask` int(11) DEFAULT NULL,
PRIMARY KEY (`idip`),
UNIQUE KEY `ip_UNIQUE` (`ip`)
)我在这张桌子上做了一些插入
但是当我试图在python上执行时:
sql = "select idip from ip where ip=%s and mask=%s" % (long(next_hop), 'DEFAULT')
cursor.execute(sql)
idnext_hop = cursor.fetchone()[0]我得到以下错误:
Inserting routes into table routes (1/377)...('insere_tabela_routes: Error on insertion at table routes, - SQL: ', 'select idip from ip where ip=0 and mask=DEFAULT')
1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1有没有人知道问题出在哪里?
发布于 2018-05-17 01:39:45
as the parameter marker,但您可以通过使用Python格式来规避它。试试这个:
sql = "select idip from ip where ip=%s and mask=%s"
cursor.execute(sql, (long(next_hop), 'DEFAULT'))
idnext_hop = cursor.fetchone()[0]发布于 2018-05-17 00:54:36
您正在使用参数来处理查询字符串,而不是将它们作为参数传递进来。代码应该如下所示:
sql = "select idip from ip where ip = ? and mask = ?"
cursor.execute(sql, (long(next_hop), 'DEFAULT'))
idnext_hop = cursor.fetchone()[0]换句话说,您希望查询引擎在查询中执行替换。您不希望Python对查询字符串进行替换。
https://stackoverflow.com/questions/50381839
复制相似问题