Skip to content

Instantly share code, notes, and snippets.

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 kovid-r/57adfe1ef093fb277c16a5f6cdc5ad95 to your computer and use it in GitHub Desktop.
Save kovid-r/57adfe1ef093fb277c16a5f6cdc5ad95 to your computer and use it in GitHub Desktop.
Random Satellite of a Random Planet
select *
from devstronomy.l_satellite
where planet_id = (select id
from devstronomy.l_planet
order by rand()
limit 1)
order by rand()
limit 1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment