How do I add referential integrity within columns of the same table in MySQL?
I have a table with the following structure:
Employee
-----------------------------
----[Other Columns Snipped]----
super_serv_no
serv_no (FK for super_serv_no)
How do I make it so serv_no
is a foreign key to super_serv_no
, and enforce referential integrity?