I have a table that have default values for a column. How do I actually see the actual default values for each column ? Is it location in Information_Schema
anywhere?
Asked
Active
Viewed 143 times
0
3 Answers
2
You ca get it from sys.columns
SELECT object_definition(default_object_id) AS default_value
FROM sys.columns
WHERE name ='col_name'
AND object_id = object_id('table_name')
If you want it for all of your columns, exclude the column name from you WHERE
clause.

sqluser
- 5,502
- 7
- 36
- 50
1
yes it is:
select TABLE_NAME,COLUMN_NAME,COLUMN_DEFAULT from INFORMATION_SCHEMA.COLUMNS where table_name = 'yourtablename'

knkarthick24
- 3,106
- 15
- 21
0
You can use any of these,
This will give you every details of the table's structure.
EXEC sp_columns @table_name = N'Department', @table_owner = 'HumanResources';
See more about sp_columns.
Or you can use,
SELECT so.name AS table_name,
sc.name AS column_name,
sm.text AS default_value
FROM sys.sysobjects so
JOIN sys.syscolumns sc ON sc.id = so.id
LEFT JOIN sys.syscomments SM ON sm.id = sc.cdefault
WHERE so.xtype = 'U'
AND so.name = @yourtable
ORDER BY so.[name], sc.colid

Emipro Technologies Pvt. Ltd.
- 14,598
- 5
- 45
- 75