Skip to content

Instantly share code, notes, and snippets.

@gregopet
Created November 1, 2019 20:46
Show Gist options
  • Save gregopet/ab29d609cb37b66139de624b971a2ad2 to your computer and use it in GitHub Desktop.
Save gregopet/ab29d609cb37b66139de624b971a2ad2 to your computer and use it in GitHub Desktop.
select(
DIRECTOR.NAME.as(PERSON.NAME),
DIRECTOR.ADDRESS.as(PERSON.ADDRESS)
)
.from(DIRECTOR)
.union(
select(
ACTOR.NAME.as(PERSON.NAME),
castNull(PERSON.ADDRESS).as(PERSON.ADDRESS)
)
.from(ACTOR)
)
.fetchInto(PERSON)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment