Computer Science, asked by vimalsha1979, 5 months ago

Write a query to display all the records of table products whose rate is greater than 800.

Attachments:

Answers

Answered by kunjuzz91
0

Explanation:

select * from product where Rate>800;

Similar questions