Hi guys
I would like to create a update query that updates more than one fields at a time. I already created a update query for each feild that i want to update. I have 6 feilds to update which i everyday update them in 6 saparate queries and i would like to make my job easier and update them in one query. here is what i used for my queries
first query
UPDATE TJ_Table1 SET TJ_Table1.Channel = "OTC"
WHERE (((TJ_Table1.BRCH)<100) AND ((TJ_Table1.TELLER)>100));
second query
UPDATE TJ_Table1 SET TJ_Table1.Channel = "IVR"
WHERE (((TJ_Table1.BRCH)=>76));
...etc
any help would be appreciated.
I would like to create a update query that updates more than one fields at a time. I already created a update query for each feild that i want to update. I have 6 feilds to update which i everyday update them in 6 saparate queries and i would like to make my job easier and update them in one query. here is what i used for my queries
first query
UPDATE TJ_Table1 SET TJ_Table1.Channel = "OTC"
WHERE (((TJ_Table1.BRCH)<100) AND ((TJ_Table1.TELLER)>100));
second query
UPDATE TJ_Table1 SET TJ_Table1.Channel = "IVR"
WHERE (((TJ_Table1.BRCH)=>76));
...etc
any help would be appreciated.