Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6355453
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T22:46:05+00:00 2026-05-24T22:46:05+00:00

How can I combine these two queries into one so I don’t have to

  • 0

How can I combine these two queries into one so I don’t have to repeat the same lines again and again?

if(empty($cat_id))
{
    $sql = "
    SELECT *
    FROM root_category_contacts
    ORDER by cat_order ASC
    ";

    $items_category = $connection->fetch_all($sql);
}
else
{
    $sql = "
    SELECT *
    FROM root_category_contacts
    WHERE root_category_contacts.cat_id != ?
    ORDER by cat_order ASC
    ";

    $items_category = $connection->fetch_all($sql,array($cat_id));
}

I don’t need WHERE clause when I don’t have the cat_id.

Is it feasible?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T22:46:06+00:00Added an answer on May 24, 2026 at 10:46 pm

    Test if ? is null or equals cat_id. Something like this:

    Edit based on xdazz’s comment. And assuming that cat_id > 0

    $sql = "
    SELECT *
    FROM root_category_contacts
    WHERE root_category_contacts.cat_id != ?
    ORDER by cat_order ASC"
    
    if(empty($cat_id)) {
        $cat_id = 0;
    }
    
    $items_category = $connection->fetch_all($sql,array($cat_id));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hey how can I combine the two queries below into one?? so I get
Can I combine these two SQL queries into single query? query1 ALTER TABLE tableA
How can I combine those two queries into one? 1) This finds the japanese
Is there any way I can combine list of expressions into one? I have
how can i combine these two queries in mysql? select count(*) as entry_count from
I have two vectors with different length in R and I can combine these
Is is efficient to combine two queries into one? What are advantages or disadvantages?
How can I in SSIS combine these two fields into 1 column of type
Can I combine these 2 SQL statements? Currently running 2 queries. Trying to tighten
How can you combine two windows in Screen? I have two windows such that

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.