Answer:
Binary
Explanation:
Binary code is code that only entails 1s and 0s
The query that displays the required data is
SELECT name, orderID, productID FROM Products WHERE Product > 1
<h3>How to rewrite the query?</h3>
To do this, we make use of the following parameters:
- Table name: Products
- Columns to read: name, orderID and productID
- Condition: Product > 1
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:
brainly.com/question/19801436
#SPJ1