Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

postgre describe table


        
            
        
     SELECT 
   table_name, 
   column_name, 
   data_type 
FROM 
   information_schema.columns
WHERE 
   table_name = 'city';
Source by www.postgresqltutorial.com #
 
PREVIOUS NEXT
Tagged: #postgre #describe #table
ADD COMMENT
Topic
Name
3+6 =