Hello
I have a slight problem
I have a table (sanalysis) made up of:
sanalysisid varchar(255)
sanqty varchar(255)
sansalesval varchar(255)
sanweight varchar(255)
The data type is irrelevant as this will change at a later date
My intention is to increment daily records to this file for everything bar the weight (sanweight) from two imported csv files. I will initially set the weight to 0 when using insert into
That part works fine
I now have two tables (north_sanalysisfull and south_sanalysisfull) which comprise of
sanalysisid varchar(255)
sanweight varchar(255)
For the whole year to date (we have a data quality issue with weights and are forever correcting them)
All I want to do is replace sanweight on all sanalysis records with sanweight from north_sanalysisfull and south_sanalysisfull
Does anybody know what the easiest way to achieve this is ?
Thanks in advance
Damian.
I have a slight problem
I have a table (sanalysis) made up of:
sanalysisid varchar(255)
sanqty varchar(255)
sansalesval varchar(255)
sanweight varchar(255)
The data type is irrelevant as this will change at a later date
My intention is to increment daily records to this file for everything bar the weight (sanweight) from two imported csv files. I will initially set the weight to 0 when using insert into
That part works fine
I now have two tables (north_sanalysisfull and south_sanalysisfull) which comprise of
sanalysisid varchar(255)
sanweight varchar(255)
For the whole year to date (we have a data quality issue with weights and are forever correcting them)
All I want to do is replace sanweight on all sanalysis records with sanweight from north_sanalysisfull and south_sanalysisfull
Does anybody know what the easiest way to achieve this is ?
Thanks in advance
Damian.