In MySQL it is possible to do show create table tablename
show create table tablename
What is the SQL Server equivalent?
if multiple database and schema exists in SQL_Dataserver, Then you need to provide the exact table location with sp_help within single quotes.
exec sp_help 'database_name.schema_name.table_name'