• That indicates that the column companyname does not exist in the Orders table, which I believe is true in the normal Northwind schema.

    To pull in companyname, you'll need to join to the customers table on Orders.CustomerID=Customers.CustomerID and use Customers.CompanyName, if I remember the schema correctly (no guarantees on that one, but I think it's right :-)).

    I hope this helps!