When I run the sp_tables I see a remark field. I know in other SQL programs, I can comment on table, but that's not working in MS SQL Server. I have tried looking this up, but I'm not getting anywhere. I was hoping to be able to use this feature instead of creating a table for a data dictionary.
-- Table Information
exec sp_tables mytable;
-- Want to add to the remark column
-- Comment ode this doesn't work:
comment on table mytable is 'TEST';
Thank you !