Horje
1) PostgreSQL DESCRIBE TABLE using psql Code Example
describe table postgres
postgres=# \d schema.tablename;
postgre describe table

        
            
        
     SELECT 
   table_name, 
   column_name, 
   data_type 
FROM 
   information_schema.columns
WHERE 
   table_name = 'city';
1) PostgreSQL DESCRIBE TABLE using psql
\d table_name or \d+ table_name
or

SELECT 
   table_name, 
   column_name, 
   data_type 
FROM 
   information_schema.columns
WHERE 
   table_name = 'city';




Whatever

Related
eslint-config-prettier Code Example eslint-config-prettier Code Example
Lunch EC2 instance from AWS CLI Code Example Lunch EC2 instance from AWS CLI Code Example
countdown timer with moment js Code Example countdown timer with moment js Code Example
events.js:292 throw er; // Unhandled 'error' event ^ Error: listen EADDRINUSE: address already in use :::3000 Code Example events.js:292 throw er; // Unhandled 'error' event ^ Error: listen EADDRINUSE: address already in use :::3000 Code Example
horizontal list css Code Example horizontal list css Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8