> Another thing you can do is CAST (c1 AS VARCHAR(100) FOR BIT DATA)
Thanks, the hex function works fine.
Can you help me with a proper syntax to the "FOR BIT DATA" for this
statement ?
select name from pmh.test where no = 44
Cheers,
Poul
Serge Rielau - 29 Nov 2004 19:05 GMT
Poul Møller Hansen wrote:
> Thanks, the hex function works fine.
> Can you help me with a proper syntax to the "FOR BIT DATA" for this
> statement ?
> select name from pmh.test where no = 44
select cast(name as <typeofname> FOR BIT DATA) as name from pmh.test
where no = 44
Cheers
Serge