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

MYSQL - Can you multiply a field by a value in a single query

Options
  • 13-02-2008 10:24am
    #1
    Registered Users Posts: 2,934 ✭✭✭


    Hi Is it possible to so something like.

    select field1 field2 from table multiply value by 2 write value back to table.

    Or would you have to extract all values first do the maths then write back.


    Thanks


Comments

  • Registered Users Posts: 3,886 ✭✭✭cgarvey


    Something like
    UPDATE table_name SET field_name = ( field_name * 2 );
    
    ?


  • Registered Users Posts: 2,934 ✭✭✭egan007


    Perfect -thanks :)


  • Registered Users Posts: 2,455 ✭✭✭dmeehan


    just what i was looking for


Advertisement