sorry in advance if my question is already exists.
I'm a sql beginner and have an issue about how can i update a field with 'Select' where one field already exists in the datatable (Table1) and the another field update by the sintax.
Select
Business,
Month,
Opens
From Table2
I would like in the same syntax to be able to do the sends / opens calculation and update the field named 'Open Rate'
Today i have the table1 with
Month -- Send -- Opens -- Open Rate
May -- 100 -- --
The table 2 have
Opens - Month
5 -- May
My goal: update the table 1 with the table 2 with the open rate (Send/Opens):
Month -- Send -- Opens -- Open Rate
May -- 100 -- 5 -- 20