Advertisement
ILyaCyclone

CabinetContracts - ContractsView

May 17th, 2021
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. /* CabinetContracts - ContractsView */
  2.  
  3. Select c.id_contract
  4. ,ps.name_Kind_paragraph
  5. ,ps.Status_Text
  6. ,c.d_start
  7. ,c.d_end
  8. ,c.dp_end
  9. From web_user_wp wu
  10. ,employees_ e
  11. ,contracts_ c
  12. ,paragraphs_status_ ps
  13. Where
  14. wu.id_web_user = :Bind_IdWebUser
  15. and wu.id_e_kis = e.id_e
  16. and e.id_contractor = c.id_with_whom
  17. and c.id_paragraph = ps.id_paragraph
  18.  
  19. Order by c.d_start desc, ps.name_Kind_paragraph, ps.Status_Text
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement