hi folks -
Python debate here w/ SQLAlchemy.
First let me show you what SQLAlchemy's text() construct looks like. You use a plain SQL string, and you can use parameters like :param. so if you have two text() statements together, and they both use the same :param name, then they're going to be the same value in the SQL even if you tried to have them different. this is illustrated in the program shown. the result you will get is (3, 4) since :a and :b are first assigned 1, 2, but later 3 and 4. 1/