Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. SELECT "resource"."name" "EMPLEAT", "attendance"."name" "DATA", "attendance"."action" "ACCIO", "attendance"."action_desc" "MOTIU", "attendance"."sheet_id" "FULL", "hr_action_reason"."action_type" "MOTIU"
  2.  
  3.  
  4. FROM "public"."hr_attendance" "attendance", "public"."hr_employee" "employee", "public"."resource_resource" "resource", "public"."hr_action_reason" "hr_action_reason"
  5.  
  6.  
  7. WHERE "attendance"."employee_id" = "employee"."id" AND "employee"."resource_id" = "resource"."id" AND "attendance"."action_desc" = "hr_action_reason"."id"
  8.  
  9. ORDER BY "DATA" DESC
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement