tryin to run an update query to my Price Band Table, where I want to COUNT the number of stores in the store data table, where the Price Band ID is equal in both tables.
I have been able to run this as a normal query:-
SELECT [Store Data Table].[Price Band ID], Count([Store Data Table].[Price Band ID]) AS Expr1,
FROM [Store Data Table]
GROUP BY [Store Data Table].[Price Band ID];
However to run this as an update query, I am unable to get it to work.
I have been able to run this as a normal query:-
SELECT [Store Data Table].[Price Band ID], Count([Store Data Table].[Price Band ID]) AS Expr1,
FROM [Store Data Table]
GROUP BY [Store Data Table].[Price Band ID];
However to run this as an update query, I am unable to get it to work.