Viewing post 1 (of 1 total)
SELECT o.name Table_Name, c.name Column_Name, t.name DataType, c.Length, CASE WHEN c.isnullable=1 THEN 'Yes' ELSE 'No' END AS 'Nullable'
FROM sysobjects o
INNER JOIN...
August 24, 2016 at 11:40 am
#1897271