6 Program to show Where Clause in PostgreSQL

Program:

select * from students;



select * from students where name='Atharva';



select * from students where age>18;


Output:


Where Clause in PostgreSQL



Previous
Next Post »