code a MySQL statement to display the number of sales orders.

A Guide to SQL
9th Edition
ISBN:9781111527273
Author:Philip J. Pratt
Publisher:Philip J. Pratt
Chapter2: Database Design Fundamentals
Section: Chapter Questions
Problem 11RQ
icon
Related questions
Question

Referring to Appendix A below, code a MySQL statement to display the number of sales orders.
 APPENDIX A – Table definitions and initializations

-- MySQL script to initialize a MySQL database and four tables:
--   customer, detail, item, salesorder
--
DROP DATABASE IF EXISTS finaldb;
CREATE DATABASE finaldb;
USE finaldb;
CREATE TABLE customer (
  c_num    varchar(16),
  c_name   varchar(128)
);
CREATE TABLE detail (
  d_onum      varchar(16),
  d_inum      varchar(16),
  d_qty      int
);
CREATE TABLE item (
  i_num    varchar(16),
  i_name   varchar(128),
  i_price  decimal(9,2),
  i_qty    int
);
CREATE TABLE salesorder (
  s_num      varchar(16),
  s_cnum     varchar(16),
  s_date     date
);
INSERT INTO customer VALUES
  ('c101','Sam Paint'),
  ('c102','Ramon Hardware'),
  ('c103','Li Auto');
--
INSERT INTO detail VALUES
  ('s201','i301',21),
  ('s201','i302',22),
  ('s202','i302',23),
  ('s202','i303',24),
  ('s203','i303',25),
  ('s203','i304',26);
--
INSERT INTO item VALUES
  ('i301','Doormat',6.00,80),
  ('i302','Carpet',16.00,81),
  ('i303','Air conditioner',160.00,82),
  ('i304','Microwave',60.00,83);
--
INSERT INTO salesorder VALUES
  ('s201','c101','2020-3-11'),
  ('s202','c101','2020-3-12'),
  ('s203','c102','2020-3-13');
--
-- end of script
--

Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Database Environment
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
A Guide to SQL
A Guide to SQL
Computer Science
ISBN:
9781111527273
Author:
Philip J. Pratt
Publisher:
Course Technology Ptr
Oracle 12c: SQL
Oracle 12c: SQL
Computer Science
ISBN:
9781305251038
Author:
Joan Casteel
Publisher:
Cengage Learning
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781285196145
Author:
Steven, Steven Morris, Carlos Coronel, Carlos, Coronel, Carlos; Morris, Carlos Coronel and Steven Morris, Carlos Coronel; Steven Morris, Steven Morris; Carlos Coronel
Publisher:
Cengage Learning
Principles of Information Systems (MindTap Course…
Principles of Information Systems (MindTap Course…
Computer Science
ISBN:
9781305971776
Author:
Ralph Stair, George Reynolds
Publisher:
Cengage Learning
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781305627482
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning