Hi,
During database development we need to verify the table structure most frequently. To improve productivity, SSMS is having SPS and shortcut keys to achieve this in few seconds.
Tip 1:
Run the following command to get the table structure
sp_help <table_name>
Tip 2:
To even do this very quickly, in SSMS there is a shortcut key available. Just you need to select the table name and pressALT + F1.
This keyboard shortcut will execute the sp_help stored procedure and display the table structure.
Thanks,
Selvaraj M.