Forum Replies Created

Viewing post 1 (of 2 total)

  • RE: Manipulate Date Output

    Got it figured out...

    Original

    substr(h.dob,5,2) || right(h.dob,2) || left(h.dob,4) as Birth_Date,

    New

    substr(h.dob,5,2) || '/' || right(h.dob,2) || '/' || left(h.dob,4) as Birth_Date,

    ...pretty easy actually.

Viewing post 1 (of 2 total)