Created
January 16, 2020 15:24
-
-
Save tomredsky/ca499d47fe711664a695e7b7541d78b3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select n.id, | |
ml.cod, | |
us.cod as ini, | |
mn.nam, | |
ct.num, | |
nm.licence_text as rights, | |
nm.price fee, | |
n.quote_total as total, | |
n.quote_currency | |
from notes n | |
join notes_media nm on n.id=nm.note_id | |
join ct on nm.media_id=ct.id | |
join ml on n.company_id=ml.id | |
join us on n.user_id=us.id | |
join mn on n.contact_id=mn.id | |
where n.id=? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This needs