Anda di halaman 1dari 2

Instituto Tecnológico de Oaxaca

Ingeniería en sistemas computacionales.

Unidad de aprendizaje.

Taller de base de datos.

Actualización de tablas en potsgresql

Catedrático:

Morales Hernández Maricela.

Alumno:

Hugo Martínez Gonzalez.


set search_path to biblioteca; update empleado
set nombre = 'Wendy', apellidos
where id_empleado = 54;
Update ejemplar
set estado='disponible' update prestamo
where noejemplar = 6; set fecha = '23/12/2017'
where folio = 965;
Update autor
set nombre = 'Hugo' update devolucion
where nombre = 'Galvin'; set fecha = '01/01/2018'
where folio = 345;
update libro
set titulo = 'La granja' update supervisador
where titulo = 'Ficciones'; set id_supervisor = 3
where id_supervisado = 1;
Update usuario
set nombre = 'Juan' update Libro
where nombre = 'Connor'; set Editorial = McGraw-Hill
where isbn = 323;
update multa
set monto = 78.63 update Autor
where foliomulta = 98; set nombre = "Carlos", apellido "Fuentes"
where id_autor = 123;

Anda mungkin juga menyukai