Guest_imported
New member
- Jan 1, 1970
- 0
Is there ever an instance where a select statement will be too "greedy" and disregard case? Ex, table contains a cell with text:
'FieldData'
The following statement should return an empty set:
"SELECT from
WHERE [column] = 'FIELDDATA'"
, correct? because the cases dont match, mysql should return a null set, right? Well, what if it doesnt, what would cause that, and how would I get mysql to be more strict so that case would matter? Pls help.
thanx.
'FieldData'
The following statement should return an empty set:
"SELECT from
, correct? because the cases dont match, mysql should return a null set, right? Well, what if it doesnt, what would cause that, and how would I get mysql to be more strict so that case would matter? Pls help.
thanx.