use AdventureWorks2017
Go
--select FirstName,DueDate ,
--Product.Name,ProductInventory.ProductID,LastName
--from Person.Person , enter code here
--Production.Product,
--Production.ProductInventory,
--Purchasing.PurchaseOrderDetail
--where person.BusinessEntityID = Production.Product.ProductID and > > > > >
person.BusinessEntityID=PurchaseOrderID
--and Person.LastName like 'a%awa' and( ProductInventory.ProductID between 882 and 992);
**strong text**
select NationalIDNumber,Person.FirstName,JobTitle
from HumanResources.Employee ,Person.Person inner join
Person.Person
using (Person.Person.PK_Person_BusinessEntityID)
where JobTitle like 'Eng%';
Error message:
Msg 321, Level 15, State 1, Line 14 "Person" is not a recognized table hints option.