I have a mysql database and my table is :
Name | passcode
----------------------
hi* | 1111
----------------------
j?n | 2222
i want this query has a result like this :
Select * from Users Where Name='hiiiiiiiiiiii'
The Query result is my first row and * and ? works like a wildcard but i use it in my database field
You dont want to put the wildcard in the actual value stored in the database field. To solve this example you would need to concat the wild card in your query...