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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T02:39:32+00:00 2026-05-27T02:39:32+00:00

Tables: items -> id, userId, tagId, postedOn itemsTags -> id, name users -> id,

  • 0

Tables:

items -> id, userId, tagId, postedOn

itemsTags -> id, name

users -> id, firstName, lastName

usersFriends -> id, userId, friendUserId

The system needs a re-build, at the moment the flow is like this:

  1. Get all the friends of the user.
  2. Per friend (foreach) get the items the friend posted.
  3. Get the tag data of the item (tagId).
  4. Get the user data of the item (userId).

But the problem is, I need to sort it by date, and later on by a specific date for example, I want to see all the items of my friends that where posted today so I need a query that does those 4 queries in one, so basically SELECT * FROM usersFriends JOIN items ON userId ...

I just can’t figure out the rest.

  • 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-27T02:39:33+00:00Added an answer on May 27, 2026 at 2:39 am
    SELECT F.*, I.*, IT.* 
    FROM usersFriends UF 
      LEFT JOIN users F                  --- friends
        ON F.id = UF.friendUserId 
      LEFT JOIN items I                  --- items they posted
        ON I.userId = UF.friendUserId 
      LEFT JOIN itemsTags IT             --- tags of those items
        ON I.tagId = IT.id 
    WHERE UF.userId = ??
    

    Where on the questionmarks you place the user’s id.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have 3 tables: Users (id, name) Orders (id, userId) Orders_Items (id, orderId, status)
I have two tables in a MySql DB: items id (char) name (varchar) description
I have 3 tables in my DB (MySQL). categories (name:string) items (name:string, category_id:int) votes
I have the following scenario in nHibernate: <class name=TestApp.Components.User,TestApp.Components table=Users> <id name=Id column=UserId type=Int32
I have the following tables: Item (Table) no name price description Item-custom (Table) userid
I have 2 tables: users and items. Each item has a user#. So, if
What is the best practice to make edit in junction tables? Items{ItemId, Name, Price...}
I have two tables: Entity ID (PK), int Name Descrip Users ID (PK) EntityID,
I have a database with two tables: Users , Items Users looks like this:
I have these 3 tables + data: items : itemId, itemName data: 1, my

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.