Advertisement
jotazetaec

Untitled

Oct 16th, 2024
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. select tc.nombre as congreso,
  2. upper(concat(tpe.apellido1,' ',tpe.apellido2,' ',tpe.nombres)) as asistente,
  3. tpe.correo
  4. from esq_conv_2020.tbl_preinscripcion tp
  5. join esq_conv_2020.tbl_congreso tc on tc.idregistro = tp.id_congreso
  6. join esq_conv_2020.tbl_personal_ext tpe on tpe.idregistro = tp.id_personal_tmp
  7. where tc.id_convencion = 9
  8. order by tc.nombre , asistente
  9.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement