Viewing 2 posts - 16 through 17 (of 17 total)
For fixed numbers of columns, you can do something like this:
select message,
max(case when type='id' then value end) as 'ID',
max(case when type='matl' then value end) as 'Malt',
max(case when type='svisor' then value...
March 29, 2002 at 2:21 am
#426274
create view zeroos_v1
as
select right(replicate('0',7)+field1,7)
from the_entity
go
March 29, 2002 at 2:11 am
#426273