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.