これはうまくいきます:
cc.execute("select * from books where name like '%oo%'")
しかし、2 番目の引数が渡された場合:
cursor.execute("select * from books where name like '%oo%' OFFSET % LIMIT %", (0,1))
Psycopg エラー:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
IndexError: tuple index out of range
このエラーを回避するにはどうすればよいですか?