Hai Friends, How to call a name using like in MySQL? Please share your knowledge. Thanks & Regards TechZarInfo
Not sure what you are after, but the LIKE operator works the same as it does in MS SQL: SELECT * FROM MyTable WHERE Name LIKE '%John%';Â
Yeah as above, edit "MyTable" to the name of your table the fields are held in and edit "Name" to the name of the field the records held in.