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
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

Link to comment
Share on other sites

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 />";
  }

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.