that will sounds stupid, but I have a table with names, those names may finish with white space or may not. E.g. I have name ' dummy '
, but even if in the query I write only ' dummy'
it will find the record ' dummy '
. Can I fix it somehow?
SELECT *
FROM MYTABLE where NAME=' dummy'
Thanks