175k views
5 votes
The _____ query will output the table contents when the value of PROD_ PRICE is less than or equal to 100.00.

User Jardanian
by
5.0k points

1 Answer

3 votes

Answer:

The correct answer for the given question is

Select * from tablename

where PROD_ PRICE<=100.00;

Step-by-step explanation:

According to question we have to find the value of PROD_ PRICE is less than or equal to 100.00. So we have used the query select * from tablename where PROD_ PRICE<=100.00 .This query fetch all the rows where PROD_ PRICE is less than or equal to 100.00.

User Andy Mell
by
4.6k points