Vern1271 Posted July 15, 2009 Share Posted July 15, 2009 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. Quote Link to comment https://forums.phpfreaks.com/topic/166103-3-queries-but-i-know-i-only-need-1-but-how/ Share on other sites More sharing options...
fenway Posted July 18, 2009 Share Posted July 18, 2009 What does "slip out" mean? Quote Link to comment https://forums.phpfreaks.com/topic/166103-3-queries-but-i-know-i-only-need-1-but-how/#findComment-877695 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.