Guest User

Untitled

a guest
Jan 23rd, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. String query =
  2. Builder.select().table("MyTable")
  3. .fields("F1","F2","F3")
  4. .leftJoin("OtherTable","F1)
  5. .where("F2",equals,"XPTO")
  6.  
  7. SELECT F1, F2, F3 from MyTable left join OtherTable on MyTable.F1 = OtherTable.F1 where F2 = "XPTO"
Add Comment
Please, Sign In to add comment