标签: python mysql sqlalchemy
在mysql中,我可以从表静态中选择自定义无字段,如下所示:
mysql
select brand, name, "10" as age from cars
我如何为sqlAlchemy做同样的事情?
sqlAlchemy
谢谢!