Jump to content

3 Queries but I know I only need 1... but how?


Vern1271

Recommended Posts

I have 3 queries that pull from the same table. The only different is that in all three queries I pull 2 different types based on what's in the database table.

 

1st Query:

mysql_select_db($database_database1, $database1);

$query_partners1 = "SELECT * FROM partners WHERE par_type = 1 AND partners.par_show != 1 ORDER BY par_name ASC";

$partners1 = mysql_query($query_partners1, $database1) or die(mysql_error());

$row_partners1 = mysql_fetch_assoc($partners1);

$totalRows_partners1 = mysql_num_rows($partners1);

 

As you can see I'm looking for par_type = 1 in this query. Pretty much the same for the other two.

 

I know there is a way to have just one query and slip out the results, but I don't know how.

 

Any help would be appreciated.

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.