SSMS 2016 (and explains ALL versions of SQL)
EXEC sys.sp_addextendedproperty
@name=N'MS_Description', @value=N'this is description yooo',
@level0type=N'SCHEMA',@level0name=N'dbo',
@level1type=N'TABLE',@level1name=N'yourtablenamehereee',
@level2type=N'COLUMN',@level2name=N'yourcolumnnamehereee'
Discovered with Ben Slade's answer which will help anyone solve the problem for any version of SSMS or any SQL editor for that matter.
- Simply go into the designer/editor and make the changes to a example/sample/target table
- then use the script as to create option...
- it will output the correct target syntax for your version of sql
My issue was that I was missing the <sys.> at the beginning of the sp_addextendedproperty. Generating the solution showed me the answer which I imagine would solve many problems for many people.