Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feedback #1

Open
wants to merge 3 commits into
base: feedback
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[![Open in Visual Studio Code](https://classroom.github.com/assets/open-in-vscode-2e0aaae1b6195c2367325f4f02e2d04e9abb55f0b24a779b69b11b9e10269abc.svg)](https://classroom.github.com/online_ide?assignment_repo_id=16614858&assignment_repo_type=AssignmentRepo)
# Fashion Magazines
Code Louisville Data Analysis Exercise

Expand Down
8 changes: 7 additions & 1 deletion sql/fashion_magazines.sql
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
-- Add your sql here
SELECT
customers.cusomer_name,
FROM orders
JOIN subscriptions ON orders.subscription_id = subscriptions.subscription_id
JOIN customers ON orders.customer_id = customers.customer_id
WHERE order_status = 'unpaid' and subscriptions.description = 'Fashion Magazine'
GROUP BY customer_name