|
update data set description
=
select left (description, charindex ('<Br>', description) -1) as description from data where num in (
select num from data
where description like '% <Br>%')
where where description like '% <Br>%'
I mean, modify the description to the query, but I can't write it like this, why? |
|