Jump to content

[SOLVED] mysql_query WHERE


All4172

Recommended Posts

What I'm wanting to do, is set up a mysql_query but based on two WHERE's. 

 

$result = mysql_query("SELECT * FROM article
WHERE visiblity LIKE 'notlive'");

 

Then if I have a $result from that query, I want to get a value in that same row from another cell called date but in the same row.  Is there a way to set up WHERE to say visiblity like 'notlive' get value from epoch date in table DATE.

Link to comment
https://forums.phpfreaks.com/topic/42433-solved-mysql_query-where/
Share on other sites

This isn't two queries, its just two where clauses. You can have any number of where clauses and separate them with AND or OR as appropriate. Use ()'s when using OR's.

 

eg.

SELECT

FROM article

WHERE visibility = 'notlive' AND `date` BETWEEN ... whatever

The AND is what I needed.  For those that may find this later on when searching.  I ended up doing this:

 

$result = mysql_query("SELECT * FROM article
WHERE visiblity LIKE 'notlive' AND date>0");

while($row = mysql_fetch_array($result))
  {
  echo $row['date'];
  echo "<br />";
  }

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.