In SQL language, we can create a temporary table like: CREATE TEMPORARY TABLE t1 ( select t2.id, t3.name from t2, t3 where t2.id = t3.id);
Can we do the same thing in SA ORM? I searched online, and some answers seemed not clear to me. By the way, when we should use view, and when to use temporary table? Thanks and Best Regards! YHL -- You received this message because you are subscribed to the Google Groups "sqlalchemy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sqlalchemy?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
