I have the following query  db.session.query(label('sid', 
distinct(Clinical.patient_sid))) to which I would like to pad a few extra 
columns with constant values, like in the following SQL example 

select distinct(Clinical.patient_sid) as sid, 'stuph' as attribute

from Clinical


I tried the naive approach of db.session.query(label('sid', 
distinct(Clinical.patient_sid)),label('attribute', 'stuph')), but it choked.

I realize this is probably very simple, but alas.

TIA!

Greg--



-- 
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sqlalchemy+unsubscr...@googlegroups.com.
To post to this group, send email to sqlalchemy@googlegroups.com.
Visit this group at https://groups.google.com/group/sqlalchemy.
For more options, visit https://groups.google.com/d/optout.

Reply via email to