Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save abadongutierrez/949bf698002ceb1f4202f40f9f18a440 to your computer and use it in GitHub Desktop.
Save abadongutierrez/949bf698002ceb1f4202f40f9f18a440 to your computer and use it in GitHub Desktop.
Repo.all(from e in "employee",
join: d in "department", on: e.department_id == d.department_id,
where: d.department_id == 2,
select: [e.first_name, e.last_name, d.name])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment