我知道这可能是愚蠢的,但我决定问任何方式。
我一直在尝试查询类似的内容:
cursor.execute("select col1, col2 \
from my_tablem \
where afield like '%%s%'
and secondfield = %s
order by 1 desc " % (var1, var2) )
但是我在类似的句子中遇到错误。它不喜欢我需要获得包含第一个 %s 值的所有结果的额外 % 。
想法?
蒂亚!