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.
create view columns as
select TOP 100 PERCENT
left(Table_Name,20) as Tab,
left(Column_Name,20) as Col,
left(Data_Type + CASE
WHEN CHARACTER_MAXIMUM_LENGTH IS NULL
THEN ''
ELSE '(' + convert(varchar,CHARACTER_MAXIMUM_LENGTH) + ')'
END
,20) as Type,
IS_Nullable as Nullable
from information_schema.columns
order by Tab
go