5- From the following tables write a SQL query to find the most expensive product of each company. Return pro_name, pro_price and com_name ? company_mast COM ID COM_NAME 11 Samsung 12 iBall 13 Epsion 14 Zebronics 15 Asus 16 Frontech item_mast PRO ID PRO_NAME 101 Mother Board 102 Key Board 103 ZIP drive 104 Speaker 105 Monitor 106 DVD drive 107 CD drive 108 Printer 109 Refill cartridge. 110 Mouse emp_department DPT_CODE DPT_NAME 57 IT 63 Finance 47 HR RD QC 27 89 EMP IDNO EMP FNAME 127323 Michale 526689 Carlos. 843795 Enric 328717 Jhon 444527 Joseph 659831 Zanifer 847674 Kuleswar 748681 Henrey 555935 Alex 539569 George 733843 Mario 631548 Alan 839139 Maria PRO_PRICE aid DPT ALLOTMENT ab 65000 15000 240000 55000 75000 EMP LNAME Robbin Snares Dosio Snares Dosni Emily Sitaraman Gabriel Manuel Mardy Saule Snappy Foster abah EMP DEPT 57 63 57 63 47 47 57 47 57 27 63 27 57
5- From the following tables write a SQL query to find the most expensive product of each company. Return pro_name, pro_price and com_name ? company_mast COM ID COM_NAME 11 Samsung 12 iBall 13 Epsion 14 Zebronics 15 Asus 16 Frontech item_mast PRO ID PRO_NAME 101 Mother Board 102 Key Board 103 ZIP drive 104 Speaker 105 Monitor 106 DVD drive 107 CD drive 108 Printer 109 Refill cartridge. 110 Mouse emp_department DPT_CODE DPT_NAME 57 IT 63 Finance 47 HR RD QC 27 89 EMP IDNO EMP FNAME 127323 Michale 526689 Carlos. 843795 Enric 328717 Jhon 444527 Joseph 659831 Zanifer 847674 Kuleswar 748681 Henrey 555935 Alex 539569 George 733843 Mario 631548 Alan 839139 Maria PRO_PRICE aid DPT ALLOTMENT ab 65000 15000 240000 55000 75000 EMP LNAME Robbin Snares Dosio Snares Dosni Emily Sitaraman Gabriel Manuel Mardy Saule Snappy Foster abah EMP DEPT 57 63 57 63 47 47 57 47 57 27 63 27 57
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question
using oracle

Transcribed Image Text:# SQL Query Exercise: Finding the Most Expensive Product by Company
In this exercise, you are tasked with writing an SQL query to identify the most expensive product offered by each company from the given tables. The required output should include the product name (`pro_name`), product price (`pro_price`), and company name (`com_name`).
## Table Structures
### company_mast
This table lists the details of companies.
- **COM_ID**: Integer representing the company's unique identifier.
- **COM_NAME**: Name of the company.
#### Sample Data:
```
COM_ID COM_NAME
----------------
11 Samsung
12 iBall
13 Epson
14 Zebronics
15 Asus
16 Frontech
```
### item_mast
This table contains details about the products.
- **PRO_ID**: Product ID.
- **PRO_NAME**: Name of the product.
- **PRO_PRICE**: Price of the product.
- **PRO_COM**: Reference ID to associate with a company.
#### Sample Data:
```
PRO_ID PRO_NAME PRO_PRICE PRO_COM
--------------------------------------------
101 Mother Board 3200.00 15
102 Key Board 450.00 16
103 ZIP drive 250.00 12
104 Speaker 250.00 16
105 Monitor 5000.00 14
106 DVD drive 2500.00 13
107 CD drive 260.00 12
108 Printer 2600.00 13
109 Refill cartridge 350.00 13
110 Mouse 250.00 12
```
### emp_department
This table provides information about different departments.
- **DPT_CODE**: Department code.
- **DPT_NAME**: Department name.
- **DPT_ALLOTMENT**: Budget allotment for the department.
#### Sample Data:
```
DPT_CODE DPT_NAME DPT_ALLOTMENT
---------------------------------
57 IT 65000
63 Finance 15000
47 HR 24000
27 RD 55000
89 QC 75000
```
### emp_details
This table includes employee details.
- **EMP_IDNO**: Employee ID number.
- **
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution!
Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 3 images

Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Recommended textbooks for you

Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON

Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON

Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education