Guys, it doesn't work.
In fact, I wanted to see all the records where you have all caps. So here is what I did to make sure:
I selected the field, selected the UCase of the same field, and then I select the records where only the field and the expression are equal:
SELECT A, B, UCase(B)
FROM Table
WHERE UCase(B)= B
ORDER BY A, B;
Well, in SQL I guess it is same as:
SELECT A, B
FROM Table
WHERE UCase(B)= B
ORDER BY A, B;
But, it does not work. The thing with the first query is that I see the two fields, the original and the all caps and they are different, right? Some are equal, how come I do not see ONLY those in the result!?
Thanx for help.