rosinghal
rosinghal

Reputation: 161

Search in mysql db with result containing string with partial match

I need to create a powerful search page for my website, I am using php & mysql.

I want to

Upvotes: 1

Views: 4931

Answers (1)

Håkan
Håkan

Reputation: 186

I don't know about "stacke" since that's not a substring of "stackoverflow". Maybe you meant "stacko"? In that case your query would be like

SELECT stuff FROM table WHERE field LIKE "stacko%";

Upvotes: 5

Related Questions