If I have data like this:
[tt]
FirstName
Andy
angela
Bob
bill
[/tt]
And I want a list of names that start with a Capitol 'A' or 'B', or lower case 'a' or 'b', so I've tried:
[tt]
Select FistName From MyTable
Where Substring(FistName, 1, 1) = 'A'[/tt]
and that does not work, I get records: Andy and angela :-(
How can I request data 'case sensitive'
---- Andy
"Hmm...they have the internet on computers now"--Homer Simpson
[tt]
FirstName
Andy
angela
Bob
bill
[/tt]
And I want a list of names that start with a Capitol 'A' or 'B', or lower case 'a' or 'b', so I've tried:
[tt]
Select FistName From MyTable
Where Substring(FistName, 1, 1) = 'A'[/tt]
and that does not work, I get records: Andy and angela :-(
How can I request data 'case sensitive'
---- Andy
"Hmm...they have the internet on computers now"--Homer Simpson