kaidine
11-22-2011, 12:24 PM
I use this command:
insert into orders (foobar) values ('a') where id = "1";
I now have a table called "orders" with a row called "foobar". Its id is "1" and the row "foobar" where id equals "1" is "a".
What I am wanting to do is add into the existing row, so that "a" becomes "ab".
Is it possible to add into an existing row, rather than overwrite it?
insert into orders (foobar) values ('a') where id = "1";
I now have a table called "orders" with a row called "foobar". Its id is "1" and the row "foobar" where id equals "1" is "a".
What I am wanting to do is add into the existing row, so that "a" becomes "ab".
Is it possible to add into an existing row, rather than overwrite it?