我想在SQLAlchemy中创建一个临时表.我可以通过调用一个对象来构建CREATE TABLE带有TEMPORARY子句的语句,但这不如用于向数据操作语言表达式添加前缀那么优雅.table._prefixes.append('TEMPORARY')Tabletable.select().prefix_with()
CREATE TABLE
TEMPORARY
table._prefixes.append('TEMPORARY')
Table
table.select().prefix_with()
是否有相当于.prefix_with()DDL?
.prefix_with()
python sqlalchemy temp-tables
python ×1
sqlalchemy ×1
temp-tables ×1