Hi All,
I need to perform a search on my DB and I am able to get exact matches like this:
Select * FROM myTable WHERE myField LIKE 'ABC*'
but now I need to return all records that fall between A-G, and then H-P and so on. Is there a way to search all records between those letters?
Can someone help me modify this SQL statement to allow me those results?
thx!!
I need to perform a search on my DB and I am able to get exact matches like this:
Select * FROM myTable WHERE myField LIKE 'ABC*'
but now I need to return all records that fall between A-G, and then H-P and so on. Is there a way to search all records between those letters?
Can someone help me modify this SQL statement to allow me those results?
thx!!