--From the Production.Product table, write a query to display the name of all products having a list price higher than $1,000.00 but less than $2,000.00 with expected starting sales date of the year beyond 2006. Include the highest Include in the result set the name of the products, the list price, and the selling starting date.
SELECT Name, ListPrice, SellStartDate
FROM Production.product
WHERE ListPrice BETWEEN 1000 AND 2000
AND SellStartDate = 2006;