7 Program for Where and Where NOT Clause in PostgreSQL

Program:

select * from students;



select * from students where name='Atharva';



select * from students where name='Atharva';


Output:

Where and Where NOT Clause in PostgreSQL

Previous
Next Post »