TECNOLOBO

No recuerdas tu codigo?
Se te olvido como se hace?

Aqui podras guardar lo que necesiten
Y cuando sea necesesario

Creado por julian gomez
iiiiii

ORACLE DATABASE CURSE



Descripcion

CONSULTAR REGISTROS NULL Y NOT NULL DE UNA TABLA

Scrippt


VALORES NULL

select *from libros where editorial is null;

VALORES NOT NULL 

select *from libros where precio is not null; 
						

Plsql


VALORES NULL

select *from libros where editorial is null;

VALORES NOT NULL 

select *from libros where precio is not null;