Is it possible to do something like this with SQLSoup, or plain SQLAlchemy:
SELECT p.Shot, s.fr_range_in, s.fr_range_out, s.cut_duration FROM Production.Production p JOIN Shots.Shots s on p.ShotID = s.shot_ID; I can intuitively figure out how that would work with SQLSoup because you pass in a connection string that requires a database. In my case I have two databases on the same database server, and I want to join on them in SQLAlchemy if possible. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "sqlalchemy" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/sqlalchemy?hl=en -~----------~----~----~----~------~----~------~--~---
