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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T15:36:55+00:00 2026-06-08T15:36:55+00:00

I am not good in sql so please don’t scold me for such basic

  • 0

I am not good in sql so please don’t scold me for such basic question. Currently I am doing a lot of homework on other technologies so I will improve sql as and when I get time to study it. Anyway let come to the point.

My question is for below query. I am trying to fetch data from three tables and it works fine as long as all conditions are satisfied but the problem is that for a posting it may happen that images are not present i.e not record for a posting in image table then post.post_id = img.post_id and img.sequence='1' condition fails and no row is returned but I want row to be returned even if no record present in images for the posting. In such case return null for image path column.

SELECT 
    img.path as path, pav.value_text as beds, post.post_id as postID 
FROM 
    postings post, post_attributes_values pav, images img 
where 
    post.post_id = pav.post_id and post.status !='expired' and pav.attr_id='33' and post.post_id = img.post_id and img.sequence='1' and post.post_id=49

If all condition satisfies then O/P comes like

    path                beds          postId
-----------------------------------------------
    saome path value     2             49

but if post.post_id = img.post_id and img.sequence='1' condition not satisfied then O/P should be like:

    path        beds          postId
----------------------------------------
    null         2              49
  • 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-08T15:36:57+00:00Added an answer on June 8, 2026 at 3:36 pm

    Use left outer join

    SELECT 
        img.path as path, pav.value_text as beds, post.post_id as postID 
    FROM 
        postings post 
        inner join post_attributes_values pav on post.post_id = pav.post_id and pav.attr_id='33' 
        left outer join images img on post.post_id = img.post_id and  img.sequence='1' 
    where  post.status !='expired' and post.post_id=49
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am not good at SQL Server 2000. I have a comma-delimited list of
I'm not too good with SQL and I know there's probably a much more
I'm not very good in SQL and HQL... I have two domains: class Hotel
I'm not good at t-sql, so I need help. I have this code I
I need help with optimizing some of my SQL queries. I'm not good in
I occasionally hear things about how SQL sucks and it's not a good language,
Maybe the question sound not good or too simple. But not for me in
I use С# Express with Entity Framework. And not very good in SQL Server
Im not good at math, I could find everything so far, but not this
I'm not good at OOP design, but I need to demonstrate my knowledge to

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.