Вы находитесь на странице: 1из 1

write query to define the following

select initcap(to_char(SLDATE,'month')) "MONTH",COUNT(SALEID) FROM SALES

GROUP BY to_char(SLDATE,'month')

ORDER BY to_char(SLDATE,'month')

assignment 95

select i.itemcode,descr from quotation q,item i

where i.itemcode=q.itemcode and q.quotedprice=

(select max(quotedprice) from quotation

where qstatus='Closed' or qstatus='Rejected')

Вам также может понравиться