If I write a query like this:
UPDATE Customers SET FirstName = UCase(FirstName), LastName = UCase(LastName)
and then save it in Access 2007, it prefixes the table name:
UPDATE Customers SET Customers.FirstName = UCase(Customers.FirstName), Customers.LastName = UCase(Customers.LastName)
I don't like it because I sometimes change my table names on the fly. Anyway to stop this prefixing?
UPDATE Customers SET FirstName = UCase(FirstName), LastName = UCase(LastName)
and then save it in Access 2007, it prefixes the table name:
UPDATE Customers SET Customers.FirstName = UCase(Customers.FirstName), Customers.LastName = UCase(Customers.LastName)
I don't like it because I sometimes change my table names on the fly. Anyway to stop this prefixing?