Reputation: 3207
I want to write a query that selects items that their titles are starting with an alphabet, something like:
select * from items where title like "A%";
But some of item names are starting with "A or 'A and I want to know if it's possible so my query contain all those forms of titles.
Upvotes: 0
Views: 155
Reputation: 1500
Or you can use regexp if there are to many possibilities to OR them.
Upvotes: 0