Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Which of the following is a correctly formatted SELECT statement to show the result set with the customer's first name, last name, and the invoice

Which of the following is a correctly formatted SELECT statement to show the result set with the customer's first name, last name, and the invoice total?
a.)
SELECT first_name, last_name,
total
FROM customer
JOIN invoice
ON customer_id=customer_id;
b.)
SELECT first_name, last_name,
total
FROM customer
JOIN invoice
ON customer.customer_id=invoice.customer_id
c.)
SELECT first_name, last_name,
total
FROM customer
JOIN invoice
ON customer.cust_id=invoice.customer_id
d.)
SELECT first_name, last_name,
total
FROM customer
JOIN invoice
ON customer_id;

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Systems Design Implementation And Management

Authors: Peter Rob, Carlos Coronel

6th International Edition

061921323X, 978-0619213237

More Books

Students also viewed these Databases questions