Elaboración de subconsultas en Oracle SQL
CONTACTO::[email protected]
COLABORACION: paypal.me/informaticonfig
CODIGO:
drop table alumnos;
create table alumnos(
documento char(8),
nombre varchar2(30),
nota number(4,2),
primary key(documento);
insert into alumnos values('30111111','Ana Algarbe',10);
insert into alumnos values('30222222','Bernardo Bustamante',9);
insert into alumnos values('30333333','Carolina Conte',8);
insert into alumnos values('30444444','Diana Dominguez',9);
insert into alumnos values('30555555','Fabian Fuentes',8);
insert into alumnos values('30666666','Gaston Gonzalez',7);
insert into alumnos values('30644556','Federico Suarez',6);
insert into alumnos values('30689898','Miguel Pantaleon',6);
Continue this lesson in the app
Install CourseHive on Android or iOS to keep learning while you move.