MySQL Forums
Forum List  »  Full-Text Search

Re: full-text search against post code
Posted by: Jay Pipes
Date: July 28, 2005 03:50PM

Don't use a FULLTEXT index for this. Use a regular index and a LIKE expression:

SELECT AccountNo as id FROM tableName WHERE Address5 LIKE 'N10%';

Jay Pipes
Community Relations Manager, North America, MySQL Inc.

Got Cluster? http://www.mysql.com/cluster
Personal: http://jpipes.com

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: full-text search against post code
2513
July 28, 2005 03:50PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.