If I have multiple sessions for different databases, is there a way to combine them on the same query?
For example, I integrate two programs with a table in the middle to translate an identifier from one to another. I'm currently just trying to run individual queries, creating the next one, using the data from the previous one. It seems to be getting a little dirty, and I would like to do this in one request.
I did not find anything that says it is possible, and knowing that the request is being executed in the session itself, makes me think that this may not be.
thanks
python join session sqlalchemy
Mark
source share