Given the default schema of a database: Customers 123 Customerld noe FirstName noc LastName Orders 123 Orderld OrderDate noc OrderNumber 123 Customerld 123 TotalAmount Orderltem 123 Itemid 123 Orderld 123 Productid 123 UnitPrice 123 Quantity noc City noc Country noc Phone Products 123 Productld se ProductName 123 Supplierld 123 UnitPrice Suppliers 123 Supplierld nc CompanyName noc ContactName noc ContactTitle noc City noc Country nc Phone noc Fax nc Package 123 IsDiscontinued To display the first name and last name of customers who have orders in 2020, which of the following tables are required in the FROM clause? Choose ALL that apply.

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
icon
Related questions
Question

q8-  Choose ALL that apply.

Given the default schema of a database:
EB Orders
123 Orderld
OrderDate
ADC OrderNumber
123 Customerld
123 TotalAmount
Orderltem
123 Itemid
123 Orderld
123 Productld
123 UnitPrice
123 Quantity
Select one or more:
O a. Suppliers
O b. Orders
O c. Orderltem
O d. Products
O e.
EB Customers
123 Customerld
ADC FirstName
ADC LastName
ADC City
ADC Country
noc Phone
To display the first name and last name
Customers
Products
123 Productld
noc ProductName
123 Supplierld
123 UnitPrice
ADC Package
123 IsDiscontinued
Suppliers
123 Supplierld
ADC CompanyName
ABC ContactName
ADC ContactTitle
ADC City
noc Country
ADC Phone
ADC Fax
customers who have orders in 2020, which of the following tables are required in the FROM clause? Choose ALL that apply.
Transcribed Image Text:Given the default schema of a database: EB Orders 123 Orderld OrderDate ADC OrderNumber 123 Customerld 123 TotalAmount Orderltem 123 Itemid 123 Orderld 123 Productld 123 UnitPrice 123 Quantity Select one or more: O a. Suppliers O b. Orders O c. Orderltem O d. Products O e. EB Customers 123 Customerld ADC FirstName ADC LastName ADC City ADC Country noc Phone To display the first name and last name Customers Products 123 Productld noc ProductName 123 Supplierld 123 UnitPrice ADC Package 123 IsDiscontinued Suppliers 123 Supplierld ADC CompanyName ABC ContactName ADC ContactTitle ADC City noc Country ADC Phone ADC Fax customers who have orders in 2020, which of the following tables are required in the FROM clause? Choose ALL that apply.
Expert Solution
Step 1

Required Code :-

 


show databases;
create database customerDB;
use customerDB;
--  --------------------TABLE - 1 -------------------------
create table Customers(CustomerId int , FirstName varchar(20) , LastName varchar(20) , City varchar(20) , Country varchar(20),
Phone varchar(10) , primary key(CustomerId)) ;

insert into Customers values(001 , 'subham' , 'kumar', 'mumbai' , 'india' , '9999999999'),
       (002 , 'sekhar' , 'suman', 'delhi' , 'india' , '8978562343'),
                            (003 , 'suman' , 'shree', 'pune' , 'india' , '1111111111'),
                            (004 , 'guru' , 'dev', 'lucknow' , 'india' , '2222222222');

-- ---------------------TABLE - 2 -------------------------------------------------
create table Orders (OrderId int , OrderDate date , OrderNumber varchar(20) , CustomerId int , TotalAmount double , 
primary key(OrderId) , foreign key(CustomerId) references Customers(CustomerId));


insert into Orders values(101 , '2020-12-03', 'ABC1' , 001 , 456.23 ),
                           (102 , '2021-11-03', 'CDB2' , 002 , 33.13 ),
                           (103 , '2020-10-01', 'AAA2' , 004 , 67.23 );
   
-- -----------Query for Display the first name and last name of customers who have orders in 2020; 
select c.FirstName , c.LastName from Customers c inner join Orders o on c.CustomerId = o.CustomerId where substring(o.OrderDate,1,4) = '2020';

---------------------------------------------------------------------------------------

The required tables in from clause are :-

1.> Customers Table

2.> Orders Table 

 

steps

Step by step

Solved in 2 steps with 2 images

Blurred answer
Knowledge Booster
Single Table
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.
Similar questions
Recommended textbooks for you
Database System Concepts
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)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education