Lesson 28. Altering Tables
You can use T-SQL to alter pretty much every aspect of a table. The syntax for doing so changes depending on what aspect of the table you are trying to alter. For the purposes of this tutorial, we will just focus on altering table columns.
Examples
Add A Column
In [ ]:
Change Column Name
In [ ]:
Change Column Data Type
In [ ]:
Delete A Column
In [ ]:
Last updated