Not sure of your specific needs, but this might be what you're looking for:
SELECT * FROM table1
WHERE first_name(casespecific) = 'John';
The other option is to set up the column to be casespecific when you initially create the table:
CREATE TABLE table1,
(
first_name VARCHAR(20) CASESPECIFIC
);
Hope this helps!