Add column to existing table

The following example shows how to add a column to an existing Table (MS SQL Server).

ALTER TABLE <table_name>
ADD <cloumn_name> <data_type>

-- example
-- ALTER TABLE definitions
-- ADD created_at datetime

Comments

There were no comments found for this weblog.

Du mußt Dich einloggen um diesen Weblog kommentieren zu können!