Hi All
I'm trying to update a datetimefeild in a table from a datetimefeild in another table based on a cretia.Both the tables can be joined on a feild called requesno
Will the below query work ok
Update CR
Set CR.contractdate = select CC.contractenddate from CC where FROM Customer_Request CR Inner join CustomerContracts CC
ON CR.requestno = CC.requestno
where CC.Indicator = 'Y' and requestno in
Thanks