获得相当于
的内容select a, b from very_wide_table
在SQLAlchemy我可以写
VeryWideTable.query().with_entities(VeryWideTable.a, VeryWideTable.b)
等同于
select a, b, 'hello' from very_wide_table
我试过了add_columns
,但它想要一个列对象,我不知道如何指定一个固定的字符串。我尝试将固定字符串添加到with_entities
,但这被解释为列名。