I am new oracle learner . I inserted a new column into a table . I am trying to insert value into only that column for specific row. Can anybody give me syntax for this.
Printable View
I am new oracle learner . I inserted a new column into a table . I am trying to insert value into only that column for specific row. Can anybody give me syntax for this.
If you added a new column and you want to add data to that column, you need to use the update command to edit the rows already there
Code:update xxx set new_column = 'YYY' where
thanks.