Forum Moderators: coopster
Is cYear how the field is capitalized in your database? That's a mistake I made all the time. I finally just started using all lower case field names.
- Ryan
The way I do my SQL code is to do fieldnames all lower case and the commands all upper. So - SELECT field1, field2 FROM tablename WHERE field='whatever' ORDER BY field ASC - That way it's easy for me to separate the commands from the fields in my mind.