+3  A: 

Because employees [EmployeeID] report to other Employees [ReportsTo]. An order belonging to another order hurts my brain.

Andy Gaskell
Ahh damn. I see the connection when i clicked on the arrow. The key "Foreign Key Columns" has a set value "ReportsTo". I know you know this already but i'm just clarifying the answer to whoever is reading this. Thanks!
burnt1ce
+1  A: 

The EmployeeID is probably being referred to by the ReportTo field. For example, a given employee reports to another employee, using EmployeeID as the reference.

The OrderID does not point to the Order table because there are no other fields in the Order table that uses/refers to the OrderID.

Randell
A: 

This is commonly referred to as a "self-join".

A: 

Notice that an Employee could be subordinate to another one (ReportsTo) so you need the EmployeeID for that which is the PK of this table.