Advertisement
jotazetaec

Untitled

Oct 27th, 2023
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. UPDATE esq_conv_2020.tbl_preinscripcion p
  2. SET genero_certificado = 'N'
  3. FROM esq_conv_2020.tbl_congreso c
  4. WHERE p.id_congreso = c.idregistro and c.id_convencion = 6;
  5.  
  6. ALTER TABLE esq_conv_2020.tbl_ponencias ADD genero_certificado text NULL;
  7. ALTER TABLE esq_conv_2020.tbl_congreso ADD genero_certificado text NULL;
  8. ALTER TABLE esq_conv_2020.tbl_congreso_equipo ADD genero_certificado text NULL;
  9.  
  10. update esq_conv_2020.tbl_ponencias set genero_certificado = 'N';
  11. update esq_conv_2020.tbl_congreso set genero_certificado = 'N';
  12. update esq_conv_2020.tbl_congreso_equipo set genero_certificado = 'N';
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement