Jump to content

Longer Queries


Hartley

Recommended Posts

For some reason I'm having trouble with some queries that are longer. I am new to mySQL, so sorry if the question seems rather foolish. There's a table with a lot of numbers in it. For this example, let's just assume there are 3 columns. I want to select all rows that have either the values of 1 or 2 for A, a value of 0 for B, and is greater than 3 for C while sorting by Column C.

SELECT * FROM table WHERE B='0' AND C>'3' AND A='1' OR A='2' ORDER BY C DESC

This is logically what I come up with, but it likes to ignore the C>'3' and doesn't always acknowledge the B='0'. REALLY confused. Thanks in advance.
Link to comment
https://forums.phpfreaks.com/topic/26064-longer-queries/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.