Ponieważ jest to dosłowny ciąg, lepiej jest użyć tutaj parametru powiązanego (zilustrowanego za pomocą text()
):
from sqlalchemy import text
connection.execute(
text("select * from table where "
"string like :string limit 1"),
string="_stringStart%")