Advertisement
jotazetaec

Untitled

Dec 21st, 2023
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 KB | None | 0 0
  1. select tc.nombre as congreso, tcl.nombre_area as tematica, tp.tema ,
  2. case when tp.id_personal_sga is null
  3. then concat(tpe.nombres,' ', tpe.apellido1, ' ', tpe.apellido2)
  4. else concat(p.nombres,' ', p.apellido1, ' ', p.apellido2)
  5. end as autor,
  6. case when tp.id_personal_sga is null
  7. then tpe.correo
  8. else p.correo_personal_institucional
  9. end as correo, case when tp.id_personal_sga is null
  10. then ug2.nombre
  11. else ug.nombre
  12. end as pais,
  13. case when tp.id_personal_sga is null
  14. then p.telefono_personal_celular
  15. else tpe.telefono_movil
  16. end as celular,tce.descripcion as estadoPonencia,
  17. case
  18. when tep.estado = 'ER' then 'EN REVISION'
  19. when tep.estado = 'AP' then 'APROBADO'
  20. when tep.estado = 'AC' then 'CORRECCION'
  21. else 'NO REGISTRADO'
  22. end as estadoPago , TO_CHAR(tep.fecha_registro, 'dd/mm/yyyy') as fecha_Pago
  23. from esq_conv_2020.tbl_ponencias tp
  24. join esq_conv_2020.tbl_congreso_linea tcl on tcl.idregistro = tp.id_congreso_linea
  25. join esq_conv_2020.tbl_congreso tc on tc.idregistro = tcl.id_congreso
  26. join esq_conv_2020.tbl_convencion_estado tce on tce.idregistro = tp.id_estado
  27. left join esq_conv_2020.tbl_evento_pago tep on tep.idregistro = tp.id_pago
  28. left join esq_datos_personales.personal p on p.idpersonal = tp.id_personal_sga
  29. left join esq_conv_2020.tbl_personal_ext tpe on tpe.idregistro = tp.id_personal_tmp
  30. left join esq_catalogos.ubicacion_geografica ug on ug.idubicacion_geografica = p.idtipo_pais_origen
  31. left join esq_catalogos.ubicacion_geografica ug2 on ug2.idubicacion_geografica = tpe.pais_origen::numeric
  32. where tc.idregistro = 94 and tp.id_estado in(55,56,53) and tp.codigo not in('CCIUTM2023-REG-ADM')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement