Advertisement
JVFabia

query Clase 5

Oct 2nd, 2020
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. -- Agregar datos a tabla ejercicios
  2. INSERT INTO public.ejercicios
  3. (nombre, apellido, edad, serie, nacionalidad, deporte, genero, ciudad)
  4. VALUES('Su Nombre', 'Apellido', 3040, 'Serie', 'Nacionalidad', 'Deporte', 'M', 'Ciudad');
  5.  
  6. -- Actualizar registros
  7. update ejercicios
  8. set deporte = 'Actualizar'
  9. where nombre = 'Nombre' and apellido = 'Apellido';
  10.  
  11. -- Validar actualizacion
  12. select * from ejercicios where nombre = 'Nombre' and apellido = 'Apillido';
  13.  
  14. -- cantidad de registros
  15. select count(*) from ejercicios;
  16. -- eliminar registros
  17. delete from ejercicios where nombre = 'Nombre' and apellido = 'Apellido';
  18. -- Eliminar por Id
  19. delete from ejercicios where id = 777;
  20. -- seleccionar todos
  21. select * from ejercicios order by id;
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement