Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Applies to:
SQL Server
The Table Designer is a visual tool where you design and visualize database tables. To create, edit, or delete tables, columns, keys, indexes, relationships, and constraints, use the Table Designer in SQL Server Management Studio (SSMS).
Create a table
- Right-click the Tables node in your database and select New > Table in SSMS, or New Table in ADS.
- Add columns to your table, specifying name, data type, and whether
NULLvalues are allowed for each column. - In SSMS, close the designer and specify a table name to save your changes.
Update a table
- Right-click the table under the Tables node of your database and select Design.
- Update the desired table settings.
- Close the designer and save your changes.
Permissions
In order to create a table, you must have CREATE TABLE permissions in the database and ALTER permission on the schema in which the table is being created. For more information, see CREATE TABLE.
To alter a table, you must have ALTER permissions on the table. For more information, see ALTER TABLE.