Referring to Appendix A below, code a MySQL statement to display the item number and name for all items.  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 --

Database Systems: Design, Implementation, & Management
11th Edition
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:Steven, Steven Morris, Carlos Coronel, Carlos, Coronel, Carlos; Morris, Carlos Coronel and Steven Morris, Carlos Coronel; Steven Morris, Steven Morris; Carlos Coronel
Chapter10: Transaction Management And Concurrency Control
Section: Chapter Questions
Problem 1P
icon
Related questions
Question

Referring to Appendix A below, code a MySQL statement to display the item number and name for all items.
 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 5 steps with 5 images

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
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
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
Fundamentals of Information Systems
Fundamentals of Information Systems
Computer Science
ISBN:
9781337097536
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