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
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

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

  • 13-02-2008 9:24am
    #1
    Registered Users, Registered Users 2 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, Registered Users 2 Posts: 3,889 ✭✭✭cgarvey


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


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


    Perfect -thanks :)


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


    just what i was looking for


Advertisement