prettitoni
Programmer
Can someone help me write an UPDATE query that sets the Date of Table1 equal to the Max(Date) in Table2 where the tables are joined on Table1.ID = Table2.ID?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Update Table1
Set table1date = ( Select Max(table2date)
From Table2
Where Table2.ID = Table1.ID
)