आप इसे sys.columns
. से प्राप्त कर सकते हैं :
select is_nullable
from sys.columns
where object_id = object_id('Schema.TheTable')
and name = 'TheColumn'
आप इसे sys.columns
. से प्राप्त कर सकते हैं :
select is_nullable
from sys.columns
where object_id = object_id('Schema.TheTable')
and name = 'TheColumn'