Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Using the following schema, find all the information regarding the purchases of customer # 7 5 . ( No projections ) CREATE TABLE IF NOT

Using the following schema, find all the information regarding the purchases of customer #75.(No projections)
CREATE TABLE IF NOT EXISTS "purchase" (
productid mediumint default NULL,
customerid mediumint default NULL,
date varchar(255),
placebought varchar(100) default NULL
);
CREATE TABLE IF NOT EXISTS "customer" (
customerid mediumint,
email varchar(255) default NULL,
name varchar(255) default NULL,
postalZip varchar(10) default NULL,
phone varchar(100) default NULL
);
CREATE TABLE IF NOT EXISTS "product" (
productid mediumint,
price mediumint default NULL,
company varchar(255),
name TEXT default NULL,
color string(12) default NULL
); SELECT
pr.productid AS productid,
p.customerid,
p.date,
p.placebought,
pr.price,
pr.company,
pr.name,
pr.color
FROM
purchase p
JOIN
customer c ON p.customerid = c.customerid
JOIN
product pr ON p.productid = pr.productid
WHERE
c.customerid =75; the problem it has to be in that same order and i dont see the to ge in that order specifically like in the imge
image text in transcribed

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

Beginning Apache Cassandra Development

Authors: Vivek Mishra

1st Edition

1484201426, 9781484201428

More Books

Students also viewed these Databases questions