I am confused by how my SELECT
query is behaving. Accidentally I read the header row of a .csv file into my table. This means there is now one row in the table which has the column values in each corresponding column.
But a SELECT
like this
select * from `mytablename` where segmentering=`segmentering`;
Returns all the rows in the table.
Why is MySQL ignoring the condition?