Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

Oracle SQL Plus inserting into a newly added field

Options
  • 29-05-2007 9:55am
    #1
    Registered Users Posts: 1,552 ✭✭✭


    Ive added a new field to a table
    The new field is called Release_confirmation.
    How do I add the same value to this field for all rows ie. confirm.

    So Id basically be setting Release_confirmation to confirm for all existing rows.

    Should I use update or insert?


Comments

  • Registered Users Posts: 15,443 ✭✭✭✭bonkey


    INSERT == Add new row(s)
    UPDATE == Change existing row(s)


  • Registered Users Posts: 1,552 ✭✭✭quinnd6


    ok thanks


  • Moderators, Politics Moderators Posts: 39,822 Mod ✭✭✭✭Seth Brundle


    You should probably read up on DML before using DDL statements!
    Just my constructive €0.02


Advertisement