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

  • SEARCH
  • Home
  • 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 6208969
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T05:53:59+00:00 2026-05-24T05:53:59+00:00

Is there a way I could somehow do the following? Table ONE id c_id

  • 0

Is there a way I could somehow do the following?

Table ONE

id   c_id   type
-------------------
1    1       7
2    2       7
3    3       5
4    4       7

Table TWO

id   title   live
-------------------
1    row1    1
2    row2    0
3    row3    0
4    row4    1

The c_id column links the data from table ONE to table TWO. Example: in table ONE, if the c_id is 2, that row in table ONE will be directly linked to table TWO’s row with id 2, which has a title of “row2”.

I want to select from table ONE, everything with type 7, but only if their associated data in table TWO has live set to 1.

Here’s how I thought I’d do it, but this doesn’t seem to work:

SELECT * FROM ONE, TWO WHERE ONE.type='7' AND TWO.live='1' ORDER BY ONE.id DESC LIMIT 5

I would expect the above to return only rows 1 and 4 from table ONE, because although table ONE has three rows with type “7”, only rows 1 and 2’s associated row in table TWO have live set to 1.

  • 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-24T05:54:00+00:00Added an answer on May 24, 2026 at 5:54 am

    You were close… try using an implicit join:

    SELECT ONE.* FROM ONE, TWO WHERE ONE.type='7' AND TWO.live='1' AND ONE.c_id = TWO.id ORDER BY ONE.id DESC LIMIT 5
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any way I could run the following 'logical code' to actually work?
If I have a div that is overflowing, is there a way I could
Is there any way that I could get the source of a website (as
Is there a way that we could override the default mac address / set
Is there a way/tool that could show me all the classes/interfaces that implement a
Is there any way that I could enjoy a decodeValue() function in PHP, too?
Is there a way that I could trigger an onresize() event for my window
I was wondering if there's a way I could code some kind of generic
I just wanna find out if there's a way I could minimize code clutter
I was wondering is there a way in PHP that you could tell where

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.