Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Agregar datos a tabla ejercicios
- INSERT INTO public.ejercicios
- (nombre, apellido, edad, serie, nacionalidad, deporte, genero, ciudad)
- VALUES('Su Nombre', 'Apellido', 3040, 'Serie', 'Nacionalidad', 'Deporte', 'M', 'Ciudad');
- -- Actualizar registros
- update ejercicios
- set deporte = 'Actualizar'
- where nombre = 'Nombre' and apellido = 'Apellido';
- -- Validar actualizacion
- select * from ejercicios where nombre = 'Nombre' and apellido = 'Apillido';
- -- cantidad de registros
- select count(*) from ejercicios;
- -- eliminar registros
- delete from ejercicios where nombre = 'Nombre' and apellido = 'Apellido';
- -- Eliminar por Id
- delete from ejercicios where id = 777;
- -- seleccionar todos
- select * from ejercicios order by id;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement