Can somebody write the code or send a link to help me 'Search for rows where 'title' starts with a chr 'A' only'.
Thanks,
Search for rows where 'title' starts with a chr 'A' only
Moderator: General Moderators
-
dustybrown
- Forum Newbie
- Posts: 2
- Joined: Thu Nov 14, 2002 12:12 pm
-
dustybrown
- Forum Newbie
- Posts: 2
- Joined: Thu Nov 14, 2002 12:12 pm
Great. That site is really simple. Thanks.
Great. That site is really simple. Thanks.
SELECT * FROM table WHERE title LIKE 'A%'
SELECT * FROM table WHERE title LIKE 'A%'