The query that displays the required data is
SELECT name, orderID, productID FROM Products WHERE Product > 1
To do this, we make use of the following parameters:
Next, we make use of the SELECT query
The syntax of the SELECT query is:
SELECT columns from table where condition
So, we have:
SELECT
name, orderID, productID
FROM Products
WHERE Product > 1
Read more about SQL query at:
https://brainly.com/question/19801436
#SPJ1