I need to know the way of getting the SQLAlchemy query printed with values.
I can be able to print the query which is getting processed, But it is not showing the values instead it just showing the field name itself.
SELECT recordsets.id AS recordsets_id, recordsets.version AS recordsets_version
FROM recordsets
WHERE recordsets.domain_id = :domain_id_1
AND recordsets.tenant_id IN (:tenant_id_1, :tenant_id_2)
AND recordsets.name IN (:name_1, :name_2)
So instead of :name_1, :name_2 or :tenant_id_1, :tenant_id_2 I need to see the values itself.