I am a relative rookie to Access and VBA, but have inherited a database to manage.
I have been going through the VBA, tables and queries to get familiar and came across the delete query below. I am assuming that there is a reason for the inclusion of the column name in addition to the global (*) and am having trouble searching for information on it.
Unfortunately, the original developer is not around for me to ask.
Any information would be appreciated.
The short question is: Why include the specific reference to tblData.Value when already deleting tblData.*?
DELETE tblData.*, tblData.Value
FROM tblData
WHERE ((tblData.Value = 0) or (tblData.Value is Null));
Thanks much.
I have been going through the VBA, tables and queries to get familiar and came across the delete query below. I am assuming that there is a reason for the inclusion of the column name in addition to the global (*) and am having trouble searching for information on it.
Unfortunately, the original developer is not around for me to ask.
Any information would be appreciated.
The short question is: Why include the specific reference to tblData.Value when already deleting tblData.*?
DELETE tblData.*, tblData.Value
FROM tblData
WHERE ((tblData.Value = 0) or (tblData.Value is Null));
Thanks much.