On 3/26/06, Igor Tandetnik <[EMAIL PROTECTED]> wrote: > Nemanja Corlija <[EMAIL PROTECTED]> wrote: > > I have a following query: > > SELECT date FROM chng ORDER BY -date; > > > > Is there a way to use positional argument (hopefully that's the right > > term) instead of column name here? > > Something like this: > > SELECT date FROM chng ORDER BY -1; > > select date, -date from chng order by 2; Not exactly what I was hopping for, but still an acceptable workaround I guess. Thanks Igor.
-- Nemanja Corlija <[EMAIL PROTECTED]>

