Jump to content

Can I query by association?


aeroswat

Recommended Posts

Is there a PHP solution I would have to use here or can I do this directly through my query? I have two tables. One holds registration information for students. It has an autonumber that it assigns to each student so in turn they are distinct. Whenever a student places an order the information for the order is placed in my order table. The way that it links the two is it has the student's number on each order record. I want to do searches through the order table but I want to order it by the student's names.

Link to comment
Share on other sites

SELECT o.* FROM orderTable AS o INNER JOIN registrationTable AS r ON o.studentNumber = r.studentNumber WHERE r.studentName = ?

 

So just trying to break that down real fast. I am selecting all the elements on the orderTable that can be accessed by o.columnname where the order student numbers equal the registration student numbers and only grabbing the ones where the student name from the registration equals what I want?

Link to comment
Share on other sites

Now if I use inner join can i still access my column names from my original table name or do I have to put the table name in front of everything? So for instance I have this

 

SELECT tblOrders.*, tblStudents.StudentName FROM tblOrders INNER JOIN tblStudents ON tblOrders.StudentNumber=tblStudents.StudentNumber WHERE col1='bla' AND col2='bla' ORDER BY tblStudents.StudentName

 

If col1 and col2 are from tblOrders will I have to put tblOrders in front of them or will it be ok the way it is?

Link to comment
Share on other sites

You can use aliases as I did in my first post

SELECT o.*, s.StudentName FROM tblOrders AS o INNER JOIN tblStudents AS s ON o.StudentNumber=s.StudentNumber WHERE s.col1='bla' AND s.col2='bla' ORDER BY s.StudentName

Link to comment
Share on other sites

You can use aliases as I did in my first post

SELECT o.*, s.StudentName FROM tblOrders AS o INNER JOIN tblStudents AS s ON o.StudentNumber=s.StudentNumber WHERE s.col1='bla' AND s.col2='bla' ORDER BY s.StudentName

 

Alright i will. Thanks again for helping me to understand the query.

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.