|
Posted by Munno on 04/28/06 10:52
Hi All,
I am not so proficient in SQL and seek your help.
I have a column by the name of Mask in a table, which has text eg.
(YYYYYYYNNNNYYYYYYYYYNNYYYY). I wanted to update one particular value
in that text. How would my update statement look like?
Below is my select statement.
select user, substring(mask, 50, 1) Authorisation from users where type
= 1 order by Authorisation desc
Below statement doesn't work.
update users set substring(mask, 50, 1) = 'Y' where user = 'me'
Thanks lot,
Munno
Navigation:
[Reply to this message]
|