Skip to content

Latest commit

 

History

History
46 lines (32 loc) · 879 Bytes

021_page_with_no_likes.md

File metadata and controls

46 lines (32 loc) · 879 Bytes

SQL Everyday #021

Page With No Likes

Site: DataLemur
Difficulty per Site: Easy

Problem

Assume you're given two tables containing data about Facebook Pages and their respective likes (as in "Like a Facebook Page").

Write a query to return the IDs of the Facebook pages that have zero likes. The output should be sorted in ascending order based on the page IDs. [Full Description]

Submitted Solution

-- Submitted Solution
SELECT p.page_id 
FROM pages AS p
LEFT JOIN page_likes AS pl ON p.page_id = pl.page_id
WHERE pl.user_id IS NULL
ORDER BY p.page_id ASC
;

Site Solution

-- DataLemur Solution 
SELECT page_id
FROM pages
EXCEPT
SELECT page_id
FROM page_likes;

Notes

TODO

NB

TBD

Go to Index
Go to Overview