Subject | Concaten8ing columns |
---|---|
Author | Clay Shannon |
Post date | 2005-05-04T21:32:42Z |
I need to display pieces of three columns in one column in a grid, so that
it appears in the format 0N-NNNNN-0N[N]
I'm trying:
.
CAST('0' || A.UNIT_ID ||'-'|| A.ADMISSION_ID ||'-0'|| A.ADMIT_ORDINAL AS
VARCHAR(16)),
.
But what I also need to do is cut off the second number of UNIT_ID, if it
has one (e.g. '2' becomes '02', and '32', becomes '03' rather than '032')
How I do dat?
Clay Shannon,
Dimension 4 Software
[Non-text portions of this message have been removed]
it appears in the format 0N-NNNNN-0N[N]
I'm trying:
.
CAST('0' || A.UNIT_ID ||'-'|| A.ADMISSION_ID ||'-0'|| A.ADMIT_ORDINAL AS
VARCHAR(16)),
.
But what I also need to do is cut off the second number of UNIT_ID, if it
has one (e.g. '2' becomes '02', and '32', becomes '03' rather than '032')
How I do dat?
Clay Shannon,
Dimension 4 Software
[Non-text portions of this message have been removed]