Q
Qaspec
I need to select records based on a portion of the value in a text string
that matches a value from another table.
I am currently using the following SQL but it is not working:
SELECT tbleSvcTickLocal.ServiceTicketID, tbleSvcTickLocal.Summary AS
Comments, tbleSvcTickLocal.CreateDt
FROM tbleSvcTickLocal
WHERE (((tbleSvcTickLocal.Summary) Like "*[Test].[Variables]*"))
GROUP BY tbleSvcTickLocal.ServiceTicketID, tbleSvcTickLocal.Summary,
tbleSvcTickLocal.CreateDt
WITH OWNERACCESS OPTION;
Please help.
that matches a value from another table.
I am currently using the following SQL but it is not working:
SELECT tbleSvcTickLocal.ServiceTicketID, tbleSvcTickLocal.Summary AS
Comments, tbleSvcTickLocal.CreateDt
FROM tbleSvcTickLocal
WHERE (((tbleSvcTickLocal.Summary) Like "*[Test].[Variables]*"))
GROUP BY tbleSvcTickLocal.ServiceTicketID, tbleSvcTickLocal.Summary,
tbleSvcTickLocal.CreateDt
WITH OWNERACCESS OPTION;
Please help.