Using a hybrid Access 2010 / SQL Server 2012 platform - (a solution in either application will work)
I have a table created with a Select Into ...
statement.
Is there any way to have this table dynamically update itself (using the query that created it) whenever its data is accessed?
Specifically, we want to keep a list of customers with only one order (non-repeat customers). I have created a table that contains the ID of those customers (WHERE COUNT(orderID) = 1
) using Select Into, but if one of those customers makes a new order, or a new customer who makes one order is created, then I want that data removed/added to the table dynamically.
So, is this possible, or do I have to remember to update the table myself whenever I use it?