Guessing I'll have about 15,00 records. I want to select only those records whose title starts with "A". Is there a way to have this work?
Select * from table where title="^";
I know that mizing regex with sql, but I can't seem to find a good exmaple anywhere.
Thanks
Joe