I'm writing a query in mySQL to find a specific ID but the query returns data even when the conditions do not true.
SELECT `id`,`VCNCID`
FROM `combinedsms`
WHERE `VCNCID`="737s"
As I do not have 737s in my table, so the result should be NULL.
But it returns all entries with 737 instead.
