2 Program to create and describe table in PostgreSQL

Program:

create table students(name text,age int,number int);  -- To create table



\d students -- To describe table


Output:

create and describe table  in PostgreSQL

Previous
Next Post »