Does anyone know a query that will return the value defined on a default constraint for a database table.column ?
So, if I have table :
create table #bill (
column1 int not null,
column2 char(4) default 'AAAA'
)
Something that would give me the 'AAAA' back ?
Thanks,
BillSelect column_default
from Information_Schema.Columns
where table_name = 'table_name' AND
column_name = 'column'|||Thank you very much,
Billsql
No comments:
Post a Comment