Hello,
Newbie here looking for help. Need to update a table based on a field from another table. Here is what I have so far...
Use [practice_acr]**
go
update sb.site
set sb.site.customerpo2 = 'ST'
inner join sb.site.customerno = ar.customer.customerno
where ar.customer.lastinvoicedat > '1/1/2018 12:00:00PM'
go
Thanks