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 9050209
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T12:36:00+00:00 2026-06-16T12:36:00+00:00

I have a 1-1 column relation between two tables, item and log For each

  • 0

I have a 1-1 column relation between two tables, item and log

For each item, there’s a log which stores whether item has been processed or not. This is identified by log.itemId being equal to item.id. log.status tells if the processing is in progress, or has finished (-1 being pending, 1 being finished).

Before processing starts, there’s no row in the log table for the corresponding item in item table.

I’m trying simply to get the rows from item where either there’s no corresponding row in log (meaning processing hasn’t started) or where status is not 1 (meaning its pending).

I’m going crazy trying to figure this out, this is my query:

SELECT 
    item.id
FROM item, log
WHERE log.itemId != item.id
OR (log.itemId = item.id AND log.status !='1')
ORDER BY item.id ASC LIMIT 1

However this returns an empty result.

What am I doing wrong?

  • 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-06-16T12:36:01+00:00Added an answer on June 16, 2026 at 12:36 pm

    Try this:

    SELECT 
      item.id
    FROM
      item left join log on (log.itemId = item.id)
    WHERE
      log.itemId is null
      OR log.status !='1'
    ORDER BY item.id LIMIT 1
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Currently, I have two MySQL tables. First table stores relation between the friend and
I have two tables with one_to_one relation between them Table one: User - has
I have two tables that have no common column. But there is relation. I
I have a legacy data base and a relation one-to-one between two tables. The
I have a question about One-To-Many relationship between two tables when there is the
I have two tables A and Band the relation between A to B is
I have a dataset with two tables and between these tables there is a
Two tables. I have column a (datetime type) and column b (numeric type) in
I have an application in which I am trying to implement ManyToMany relation between
I am trying to write a SQL statement between two tables where there is

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.