I've been trying to wrap my head around a possible Hidden Value.
Whenever I run this query
SELECT * FROM LIST WHERE `GROUP_2` = "Yes";
I get 0 results.
Whenever I run this:
SELECT * FROM LIST WHERE `GROUP_2` LIKE 'Yes%';
I am able to pull result.
I have tried Many different export and import parameter using the MySQL load data for csv import but nothing works. Both GROUP_1 and GROUP_2 are set to varchar(55)
Any queries i can run to identify the cause of this or detect hidden breaklines?
ID name GROUP_1 GROUP_2
1 Bob No Yes
2 Jim Yes No