DBAsupport.com Forums - Powered by vBulletin
Results 1 to 3 of 3

Thread: SQL*plus

Hybrid View

  1. #1
    Join Date
    Dec 2005
    Posts
    7

    SQL*plus

    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.

  2. #2
    Join Date
    Sep 2002
    Location
    England
    Posts
    7,334
    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 

  3. #3
    Join Date
    Dec 2005
    Posts
    7
    thanks.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width