I have an SQL problem.
field_1 field_2 field_3
1 1 A
2 2 b
3 3 1
Select field_1, field_2
From MyTable
Where lower(field_3) = upper(field_3);
This returns all the records. Shouldn't it return only record with field_1 = 3 and field_2 = 3 ?
答案 0 :(得分:5)