Please excuse my ignorance here. I have a column that contains numbers or letters. I'm trying to select something that matches either this or that. For example I'm working with a table containing a list of kids at a school. I want to pull any number between 1 and 12 so in my SELECT query I have this:
AND kids.grade>'0' AND kids.grade < '13'
but I aslo want to pull the kindergarten kids that have alphbetical codes for their grades so:
AND kids.grade='PN1'
How can these 2 be combined in 1 query?
AND kids.grade>'0' AND kids.grade < '13'
but I aslo want to pull the kindergarten kids that have alphbetical codes for their grades so:
AND kids.grade='PN1'
How can these 2 be combined in 1 query?