i wanna update rows with numbers greater than 5 to have the same closingdate as their openingdate
would it be
update table set closingdate=openingdate where num>5
now these records all have different openingdates so will they all be updated with the correct closingdate?
would it be
update table set closingdate=openingdate where num>5
now these records all have different openingdates so will they all be updated with the correct closingdate?