Alright... I'm making a very simple database that'll keep track of employess and who their supervisors are. Since Supervisors are employees as well, they all fall into the same table...
Now, the table has 3 main rows, EmployeeID, Name, and SupID.
EmployeeID is an auto-incrementing Integer starting at 0
SupID is a foreign key from the EmployeeID. Since all Sups are also employess, it becomes slightly recursive.
Now the logic behind setting it up is not a problem whatsoever. The problem is, how do I make the relationship?