C
Chieferman
I am trying to do a simple count of records in my database that match a
certain value. I have tried numerous code variations:
SELECT COUNT(*) FROM Results WHERE (Session = 'S01A')
SELECT COUNT(*) FROM Results WHERE Session = 'S01A'
SELECT COUNT(*) FROM Results WHERE (Session = ::S01A:
SELECT COUNT(*) FROM Results WHERE ('Session = ::Session::')
None find any values. I can count all records for a numeric field but
not a text field.
Any help???
certain value. I have tried numerous code variations:
SELECT COUNT(*) FROM Results WHERE (Session = 'S01A')
SELECT COUNT(*) FROM Results WHERE Session = 'S01A'
SELECT COUNT(*) FROM Results WHERE (Session = ::S01A:
SELECT COUNT(*) FROM Results WHERE ('Session = ::Session::')
None find any values. I can count all records for a numeric field but
not a text field.
Any help???