Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Another DBA Whoops

    The other option is that if you're not worried about the column name, you simply leave the AS out of the query:

    select top 5

    o.orderid

    , o.customerid

    , CONVERT(char(10), o.requireddate, 101)

    from orders o

    order...

Viewing post 1 (of 1 total)