|
|
LIKESELECT * FROM People WHERE LName LIKE 'Sm%'The SQL Statement above will retrieve ALL fields: SELECT * From the table named People: FROM People With the requirement that the LName starts with Sm: WHERE LName LIKE 'Sm%' If this is the original table
Your recordset returned would be this:
You can also do like this: LIKE '%th' -- ends in th LIKE '%e%' -- has an e in it | |||||||||||||||||||||||||||