Hello,
For the query like
insert in to abc select * from abc_clone
Can i do this with sqlalchemy like
making the select object :
sel = select()
sel.append_from(abc_clone)
sel.append_column("*")
and insert statment as
ins = abc.insert(sel)
engine.exeucte(ins)
Is it possible like . Pls guide me ..
Thanks in advance
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---