I have a table (t) with column (c) defined as varchar 20 containing the values 'a', 'b' and 'c'
If I execute the following sql, the value is returned:
select * from table where c = 'a '
Why?
I assume it somehow throws / truncates the parameter, but why?
How I really looked 'a '
source
share