I was working on a small project and came across this idea, but wasn't sure if it was doable.
Is there a way to select items that start with a given letter or higher? For example,
select * from table where LOWER(item) LIKE 'g%'
would give me all items starting with the letter g. However, what if I needed to simply start at g and pull all items that start with g - z? Is there an easy way to do this that my fried brain is overlooking?
Is there a way to select items that start with a given letter or higher? For example,
select * from table where LOWER(item) LIKE 'g%'
would give me all items starting with the letter g. However, what if I needed to simply start at g and pull all items that start with g - z? Is there an easy way to do this that my fried brain is overlooking?