Hi,
I'm wondering if there's a way I can add a string to the tablename in
a select query without affecting reflection, aliases, etc.

Eg.
given:

t = Table( 'c1', column( 'c1', Integer, primary_key=True)

I'd like to be able to generate:

SELECT scntest.c1 AS scntest_c1 FROM scntest AS OF SCN 123

maybe using something like

session.query( t.from_append( "AS OF SCN 123" )).all()



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To post to this group, send email to sqlalchemy@googlegroups.com
To unsubscribe from this group, send email to 
sqlalchemy+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to