• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

adding fields to an already existing database

DeadSeaSquirrels

Senior member
I am a real newbie at databases, and perhaps this is silly, but I was wondering if you could add a column to a table in your database that is already in existence. And if not, how can you modify a particular table and have an added column to it?


oops, I guess it was easier than I expected.
 
Use the alter table command....


alter table myTable add newColumn varchar2(50);

(Oracle)

What database are you using?
 
Back
Top