Ok, so I at the moment, I have one table "project" with Id and other stuff. I need another table that will hold subprojects of the first table. How would I be able to connect these two tables so that when the information from the first table is accessed, it will also bring the subproject from the other table with it. Example:
______
|1|John|
|2|Bob |
Project Table
___________
|1|DO WORK |
|2|DONT WORK|
SubProject Table
When I click view info button the table should print out all the info from project as well as his subproject b/c of the same ID