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

Feature request: In/Not In #61

Open
Njanderson opened this issue Nov 1, 2017 · 0 comments
Open

Feature request: In/Not In #61

Njanderson opened this issue Nov 1, 2017 · 0 comments

Comments

@Njanderson
Copy link

Hey! Could we get these features added? This is a query found when grading CSEP 544, HW3.

select distinct F2.dest_city as city
from Flights F1, Flights F2
where F1.origin_city = 'Seattle WA' and 
      F1.dest_city = F2.origin_city and F2.dest_city != F1.origin_city and 
      F2.dest_city not in (select F.dest_city as dest_city 
                           from Flights F 
                           where F.origin_city = 'Seattle WA');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant