Return two results from same column
Posted: Thu Oct 17, 2002 8:30 pm
Im trying to write a mysql query where I want to return a result of two possible out comes as in
select propType from sites where propType='$propType' or propType='*'
where propType=BB
I would want returned all results that would have BB in the propType column as well as * in the propType column.
Any ideas without having to make two queries to the db
phpScott
select propType from sites where propType='$propType' or propType='*'
where propType=BB
I would want returned all results that would have BB in the propType column as well as * in the propType column.
Any ideas without having to make two queries to the db
phpScott