5 Program to show Select Distinct Clause in PostgreSQL

Program:

select * from students;



select name from students;



select distinct(name) from students;


Output:

Select Distinct Clause in PostgreSQL

Previous
Next Post »