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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T05:12:22+00:00 2026-05-28T05:12:22+00:00

I have two table like this: table1_ride ——– id ride id from_which_city city id

  • 0

I have two table like this:

table1_ride
--------
id                 ride id
from_which_city    city id
to_city            city id

table2_city
--------
id                 city id
name               city name

What I want is when I submit query SELECT * FROM ride I want to show me ride_id, from_which_city, to_city like this:

1 Manchester Liverpool 

instead of

1 8 3 Where 8 = ManchesterID and 3 = LiverpoolID

I tried left join

SELECT * FROM ride LEFT JOIN city ON ride.from_which_city = city.id

and it’s working for from_which_city. How to do this to work for both – from_which_city and to_city.

I didnt find case where left join is like: t1.b = t2.a AND t1.c = t2.a.

Thanks in advance!

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

    Join on the table2_city table twice and use an alias:

    SELECT table1_ride.id, fc.name as from_city_name, tc.name as to_city_name
    FROM table1_ride
    INNER JOIN table2_city AS fc ON
        table1_ride.from_which_city=fc.id
    INNER JOIN table2_city AS tc ON
        table1_ride.to_which_city=tc.id
    

    (replace inner with left outer if necessary…).

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

Sidebar

Related Questions

I have two table like this table_CN (_id, name, phone, favorite, title) table_EN (_id,
I have two table with different column like this: table1 ( _id, title, name,
i want to do for a table something like this. I have two tables
I have two tables like this. Table 1 Fields: CId , Name Table 2
I have two tables which looks something like this Table Queue int ID; string
I have two tables Department and Employee . Department table looks like this: ID
I have two checkboxes generated like this: <table> <?php foreach ($invited_members as $mem) :
I have two tables associated by FK. Table student is mapped like this: @Entity
I have two tables and want to compare rows on sqlite like this table1
I have a table and it's data looks like this: id name date ---------

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.