Altering user-defined table types in SQL Server

前端 未结 7 1512
心在旅途
心在旅途 2020-12-13 12:06

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

7条回答
  •  悲&欢浪女
    2020-12-13 12:30

    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'.

提交回复
热议问题