Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
select table_name,column_name,data_type,coalesce(column_default,'') as column_default,is_nullable,
CHARACTER_MAXIMUM_LENGTH,
NUMERIC_PRECISION,
NUMERIC_PRECISION_RADIX ,
NUMERIC_SCALE
from INFORMATION_SCHEMA.COLUMNS
where table_name = 'YourTableName'
[code]
Denis The SQL Menace
SQL blog:[URL unfurl="true"]http://sqlservercode.blogspot.com/[/URL]
Personal Blog:[URL unfurl="true"]http://otherthingsnow.blogspot.com/[/URL]