hi all,
i have a auto suggestion box which displays countries when we type a it will display all countries starting with letter a like alaska,australia etc...,but i want to display every name which has letter a in names like australia,india,
etc...

Recommended Answers

All 2 Replies

SELECT * FROM countries WHERE country LIKE '%a%'

If there are small number of rows in a table u can go with Like '%a%'
else you need to try full text index

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.