Hi is is possible to get a null column in sqlalchemy? For example I would like to select all user ids together with a NULL column
db.session.query(models.User.id, NULL)
The reason for this is that I need to do a UNION, which requires the same number of columns... thanks fl