G
Guest
I am using a variable in an SQL string called "strName" to apply a filter to
return a specific name.
ie
Dim strName as string
strName = "Jeff"
SELECT tblName.Name
FROM tblName
WHERE (((tblName.Name)=""" & strName & """));
What can I set this variable ("strName") to so that it will return ALL NAMES
in the table, tblName (not just Jeff)?
It seems simple but I am stuck on this one.
Many Thanks
Ross
return a specific name.
ie
Dim strName as string
strName = "Jeff"
SELECT tblName.Name
FROM tblName
WHERE (((tblName.Name)=""" & strName & """));
What can I set this variable ("strName") to so that it will return ALL NAMES
in the table, tblName (not just Jeff)?
It seems simple but I am stuck on this one.
Many Thanks
Ross