vote up 0 vote down star

The following errors,so must be wrong,but what is the correct way to do this:

$query = "SELECT * FROM tblProducts WHERE ProductId ='$SCId' AND SELECT * FROM tblProducts WHERE Cat ='$CatType' AND Type ='$TypeType'";

$rsPrimary = mysql_query($query) or die ("Query '$query' failed with error message: \"" . mysql_error () . '"'); $num=mysql_numrows($rsPrimary); mysql_close();

flag

4 Answers

vote up 7 vote down check
    SELECT * FROM tblProducts WHERE ProductId ='$SCId' 
                                  OR (Cat ='$CatType' AND Type ='$TypeType')
link|flag
vote up 2 vote down

Looks to me like what you really want is:

select * from tblProducts
where ProductId ='$SCId'
or ( Cat ='$CatType' AND Type ='$TypeType' )
link|flag
vote up 1 vote down

The 'AND' statement in your WHERE clause is expecting a condition on its right hand side. You cannot place a SELECT query there.

link|flag
vote up 0 vote down

The answers already given are correct for your query, however if, in the future you want to append the results of two or more select statements together you should take a look at UNION or UNION ALL. So your original query would have worked if you replaced your first and with UNION.
UNION removes duplicates from the results, UNION ALL doesn't and is therefore faster.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.