Adding a Column to a Table

  • Can I add a column to a database table without dropping and recreating the table?

    The problem is that everytime a user creates an action that requires a new table - at the moment I drop the table and recreate the table with the new column.

    This requires lots of resources as I have to populate the table again.

    Is there a design way I can go around this?

    Thanks,

    Bianca

  • ALTER TABLE TableName

    ADD COLUMN column_name...

    It will add the column to the end of the field list...

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply