My table (tblData) contain a field called Name. I want to get a DAO recordset with Name that begins with L.
I use the SQL statement :
“SELECT * FROM tblData WHERE Name LIKE ‘L*'”
But the resultant recordset conatins only one record – I get the first record, missing the rest.
Is there anything amiss from my SQL statement?