Computer Science, asked by chiraggambhir555, 20 days ago

(a) Select all the PROG type published by BPB from Library.
(b) Display a list of all books with Price more then 130 and sorted by Qty.
Display all the books sorted by Price in ascending order.
(C)​

Answers

Answered by ayushdubey60
2

Answer:

I hope that it will help you please mark me as branliest

Explanation:

A = select * from library

where type = ‘PROG’ and pub = ‘BPB’ ;

b = select * from library

where price >130

order by Qty ;

c = select * from library

order by price ;

Similar questions