Jump to content

Recommended Posts

Hello,

 

I'm having a bit of trouble with trying to figure out what to do. If someone can point me to right direction, it will be greatly appreciated.

 

Here is what I need:

 

I have 2 MYSQL tables in this format:

 

Table userdata: uId, fName, lName, address, account_type, manager_id etc.

Table projects: pId, width, height, pic1, pic2, agent_id etc.

 

What I'm trying to accomplish is:

1) I want to get all the agents (account_type from userdata table) from 1 manager using the manager_id.

2) Show all the projects posted by all the agents under this manager.

 

Can someone tell me how can this be done using php and MYSQL.

 

Thanks in advance for your suggestions and help!

 

Jatt Surma

Link to comment
https://forums.phpfreaks.com/topic/228296-help-with-a-complex-mysql-query/
Share on other sites

1) SELECT account_type FROM userdata WHERE manager_id = $managerID

2) SELECT projects.* FROM projects JOIN userdata ON projects.agent_id = userdata.account_type WHERE manager_id = $managerID

 

Do the above queries give you what you need?

Hello Ignace,

 

Thanks for your help! Your second query was all I needed. I changed the userdata.account_type to userdata.account_id and it worked like a charm.

 

Thanks again! I appreciate it. I really gotta learn how to join tables.

 

Jatt Surma

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.