Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu

find all Default Values of the Columns

In this post, I am sharing one script to find all default values of the PostgreSQL columns.

Sometimes, it is required to find out default values of a column which is creating a problem in the data.

You can easily find default values in the table definition script, but if you require to report all default values of a database, you desire only one script to find all default values.

Using below script you can find all default values and also if you require to find particular default value, you can add a filter in WHERE clause.
SELECT 
 table_catalog
 ,table_schema
 ,table_name
 ,column_name
 ,data_type
 ,column_default
FROM information_schema.columns
WHERE table_schema = 'schema_name'
 AND column_default IS NOT NULL
ORDER BY column_name;

Comments

Popular posts from this blog

How to find the server is whether standby (slave) or primary(master) in Postgresql replication ?

7 Steps to configure BDR replication in postgresql

How to Get Table Size, Database Size, Indexes Size, schema Size, Tablespace Size, column Size in PostgreSQL Database

Ora2PG - Oracle/MySQL to Postgres DB migration Version 20.0

PostgreSQL Introduction