LanceT Posted January 13, 2007 Share Posted January 13, 2007 Lets say in one of my rows a certain column has the value "hello" How do I change all of them to "hello world" without doing it manually?Thanks. Quote Link to comment Share on other sites More sharing options...
fenway Posted January 13, 2007 Share Posted January 13, 2007 Well, a simple UPDATE table SET value = 'hello world' WHERE value = 'hello will work... Quote Link to comment Share on other sites More sharing options...
Barand Posted January 14, 2007 Share Posted January 14, 2007 I couldn't tell from that question whether to change all the columns in the one row containing "hello" to "hello world"orchange that certain column in all rows to "hello world" Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.