Skip to content

Instantly share code, notes, and snippets.

@BenjaminDavison
Created December 19, 2017 15:02
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 BenjaminDavison/25763f52e41da18882c5c7cb68de47fd to your computer and use it in GitHub Desktop.
Save BenjaminDavison/25763f52e41da18882c5c7cb68de47fd to your computer and use it in GitHub Desktop.
mb
select * from
l_artist_recording lar,
--l_artist_instrument lai,
artist a,
--instrument i,
recording r
where lar.entity0 = a.id
and lar.entity1 = r.id
--and lai.entity0 = a.id
--and lai.entity1 = i.id
--and i.name = 'guitar'
limit 50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment