No, prefix_with() is defined only for SELECT and INSERT. But a convenient way to add a prefix to the CREATE TABLE statement passes it to the table definition:
t = Table( 't', metadata, Column('id', Integer, primary_key=True), # ... prefixes=['TEMPORARY'], )
Denis otkidach
source share