4 Program for Select Clause in PostgreSQL

Program:

INSERT INTO students values('John', 19, 97999),('Kim', 20,9898),('Atharva',200,989122);



select * from students; -- Select All Column



select name from students; --Select Single Column



select age from students;


Output:

Select Clause in PostgreSQL

Previous
Next Post »