Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. select
  2. ficha_atendimento_dentista.id,
  3. ficha_atendimento_dentista.localDeAtendimento,
  4. ficha_atendimento_dentista.tipoAtendimento,
  5. ficha_atendimento_dentista.turno,
  6. profissionais_ab.cns cns_medico,
  7. profissionais_ab.cbo,
  8. unidade_ab.nome
  9. from
  10. ficha_atendimento_dentista_procedimento
  11. join ficha_atendimento_dentista on ficha_atendimento_dentista.id = ficha_atendimento_dentista_procedimento.codigoFicha
  12. join profissionais_ab on profissionais_ab.id = ficha_atendimento_dentista.profissional_id
  13. join unidade_ab on unidade_ab.id = profissionais_ab.unidade_id
  14. where ficha_atendimento_dentista.atendido = 1
  15. and ficha_atendimento_dentista.data >= '2019-04-01'
  16. and ficha_atendimento_dentista.data <= '2019-04-10'
  17. group by codigoFicha
  18. order by codigoFicha
  19.  
  20. 1 | 1 | 1 | 1 | 123456 | DENTISTA 1 | UNIDADE 1
  21. 2 | 1 | 1 | 1 | 123456 | DENTISTA 1 | UNIDADE 1
  22.  
  23. 1 | DENTISTA 1 | DENTISTA | 123456 | 1
  24. 2 | DENTISTA 2 | DENTISTA | 789012 | 2
  25. 3 | DENTISTA 3 | DENTISTA | 345678 | 3
  26. 4 | AUXILIAR 1 | AUXILIAR | 901234 | 1
  27. 5 | AUXILIAR 2 | AUXILIAR | 567890 | 2
  28. 6 | AUXILIAR 3 | AUXILIAR | 234567 | 3
  29.  
  30. 1 | 1 | 1 | 1 | 123456 | DENTISTA 1 | UNIDADE 1 | AUXILIAR 1
  31. 2 | 1 | 1 | 1 | 123456 | DENTISTA 2 | UNIDADE 2 | AUXILIAR 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement