Viewing 3 posts - 1 through 4 (of 4 total)
Oh right. I didn't know that. Thanks!!
September 19, 2006 at 9:46 am
#661296
Yeah I see what you mean.
The only reason I used IN is because I actually had an INNER JOIN (I was testing for a certain condition using another related Table)....
September 19, 2006 at 2:00 am
#661186
Thanks for the quick response guys.
I had *just* found a way before the suggestions. I used the following:
update Table
set ColumnName = SUBSTRING(ColumnName , 5, (LEN(ColumnName)-4))
where PrimaryKeyColumn in
(
select t.PrimaryKeyColumn...
September 18, 2006 at 11:43 am
#661095