[sql-server] Altering user-defined table types in SQL Server

How can I alter a user-defined table type in SQL Server ?

This question is related to sql-server user-defined-types

The answer is


As of my knowledge it is impossible to alter/modify a table type.You can create the type with a different name and then drop the old type and modify it to the new name

Credits to jkrajes

As per msdn, it is like 'The user-defined table type definition cannot be modified after it is created'.


Similar questions with sql-server tag:

Similar questions with user-defined-types tag: