Search for rows where 'title' starts with a chr 'A' only

Questions about the MySQL, PostgreSQL, and most other databases, as well as using it with PHP can be asked here.

Moderator: General Moderators

Post Reply
dustybrown
Forum Newbie
Posts: 2
Joined: Thu Nov 14, 2002 12:12 pm

Search for rows where 'title' starts with a chr 'A' only

Post by dustybrown »

Can somebody write the code or send a link to help me 'Search for rows where 'title' starts with a chr 'A' only'.

Thanks,
kcomer
Forum Contributor
Posts: 108
Joined: Tue Aug 27, 2002 8:50 am

Post by kcomer »

dustybrown
Forum Newbie
Posts: 2
Joined: Thu Nov 14, 2002 12:12 pm

Great. That site is really simple. Thanks.

Post by dustybrown »

Great. That site is really simple. Thanks.

SELECT * FROM table WHERE title LIKE 'A%'
Post Reply