Skip to content

Instantly share code, notes, and snippets.

@mcloide
Created March 22, 2016 02:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mcloide/00448dcaabb8a2b8d379 to your computer and use it in GitHub Desktop.
Save mcloide/00448dcaabb8a2b8d379 to your computer and use it in GitHub Desktop.
select_pirates
select * -- please don't ever do *
from piratees p
join (
select p1.id, min(ps.ship_in) as ship_in
from piratees p1
join piratee_login ps on ps.piratee_id = p1.id
where ps.ship_in is not null
and ps.ship_in != '0000-00-00 00:00:00'
group by p1.id
) as ps
on ps.id = p.id;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment