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.
execute sp_addextendedproperty 'Comment', 'Blah blah', 'user', 'dbo', 'table', 'myFirstTable', null, null
execute sp_addextendedproperty 'Comment', 'Blah blah 2', 'user', 'dbo', 'table', 'mySecondTable', null, null
select A.name, B.value as comment from sysobjects A
left join ::fn_listextendedproperty ('Comment', 'user', 'dbo', 'table', null, null, null ) B on A.name=B.objname
where A.xtype = 'U' order by A.name