Sagar Shah
Sagar Shah

Reputation: 399

How to select dummy column in peewee?

how to do

select 'blah' as dummycolumn

in peewee??

I have tried

MyTable.select('blah')

but it is not working

Upvotes: 3

Views: 1121

Answers (1)

coleifer
coleifer

Reputation: 26235

MyModel.select(
    MyModel.some_field.alias('another_name'),
    Value('a string literal').alias('a_string'),
    Value(12345).alias('a_number'))

Upvotes: 4

Related Questions