hi!
I have a table who name is table0. its have a values like colum0: 01 colum1
: d01 and other table(this name is table1) have linked values to 01 and
d01. I want to update d01 value in table1, look from table0. I have
32000-35000 value in table0 and table1.So how can I do it?
Thanks,,,,,,
Hilary Cotter - 21 Jun 2004 12:53 GMT
update table0
set colum0= 01, colum1= d01
from table0,table1
where table1.column0=table0.column0 and table1.column1=table0.column1

Signature
Looking for a SQL Server replication book?
http://www.nwsu.com/0974973602.html
> hi!
>
[quoted text clipped - 4 lines]
>
> Thanks,,,,,,