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 traingamer, it worked perfect!
And HitechUser, when I used the example "johnny", I used a longer word to make sure you would understand what I meant... sorry it upset you.
It was not that is upset me. I was simplu wanting a better explanation of your request. The length of the text was not relevent to my question. I was trying to determine which type of mixed case events were you trying to return in your SQL.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.