SyntaxFix
Write A Post
Hire A Developer
Questions
To create a new empty column and fill it with the same value (here 100) for every row (in Toad for Oracle):
ALTER TABLE my_table ADD new_column INT; UPDATE my_table SET new_column = 100;