Jump to content

[SOLVED] Woz Wrong in this Inner Join... Urgent Plz....!!!!!!


ashii

Recommended Posts

SELECT user.firstname, user.lastname, user.contact,user.address, user.email, vehicle_dtls.Vid,vehicle_dtls.name, vehicle_dtls.model, vehicle_dtls.seats
FROM (user INNER JOIN vehicle_dtls ON user.ID = vehicle_dtls.ID)(vehicle_dtls INNER JOIN tbl_busimage ON vehicle_dtls.Vid= tbl_busimage.Vid)
WHERE vehicle_dtls . route = 'USA-NEWYORK'

Link to comment
Share on other sites

What's the error message?

What data do you have?

What data are you expecting?

What is your schema layout?

 

And as a prelude to you answering the questions above i've written out your query to be more readable (and it would appear i have also corrected your problem...)

 

SELECT u.firstname
      ,u.lastname
      ,u.contact
      ,u.address
      ,u.email
      ,v.Vid
      ,v.name
      ,v.model
      ,v.seats
FROM user u
INNER JOIN vehicle_dtls v ON u.ID = v.ID
INNER JOIN tbl_busimage b ON v.Vid= b.Vid
WHERE v.route = 'USA-NEWYORK'

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.