以下のように、pypyodbc を使用して Python で削除 SQL クエリを実行できました。
cur.execute("delete from table_a where a ='a';").commit()
ただし、サブクエリで削除SQLを実行できませんでした
cur.execute("delete from table_a where a in ( select a from table_b );").commit()
戻ります
pypyodbc.Error: ('HY010', '[HY010] [unixODBC][Driver Manager]Function sequence error')
サブクエリを使用して削除 SQL を実行するにはどうすればよいですか?