चूंकि यह एक शाब्दिक स्ट्रिंग है, आप यहां एक बाउंड पैरामीटर का उपयोग करना बेहतर समझते हैं (text()
):
from sqlalchemy import text
connection.execute(
text("select * from table where "
"string like :string limit 1"),
string="_stringStart%")