Ok. I am trying to use the query command "LIKE", but its not working. I have a row with the name Ben Stuart - A moment inside. When I use the following code:
SELECT * FROM TableName WHERE Title LIKE ' e*';
and its not working, it just shows a blank table. But when I use the following code:
SELECT * FROM TableName WHERE Title LIKE 'B%'
..then it works just fine. I know the first block of code is to match the criteria to the second letter, and the second block of code is to match the search criteria to the first letter. I just cant seem to get the one where it searchs for the second letter. Can someone help

Query Commands
PlusOne
It will work on special wildcard characters only (they being %, _ [underscore], square brackets [], and [ ^ ] to signify the characters not to include).
You could use underscore because this works on the same format as * ... rather than actually.
You can make it:- LIKE '_c%'
This will look for any word that starts off with any character but has c as the second character and does not care about any occurrence of the characters thereafter.
I hope that solves the problem.
Markchr
Urue