I wonder if there is any way to APPEND data to an already populated field using a SQL query. I'm presently handeling it through PHP by writing two queries.
killroy
12:38 pm on Oct 13, 2005 (gmt 0)
I suppose it would go like this:
UPDATE table SET field1=CONCAT(field1,' this will be appended to the end of field1') WHERE id=12345;
SN
binarytrends
7:49 am on Oct 16, 2005 (gmt 0)
Thanks killroy
coopster
12:43 am on Oct 17, 2005 (gmt 0)
That killroy supposes correctly quite often ;)
Welcome to WebmasterWorld, binarytrends.
txbakers
12:54 am on Oct 17, 2005 (gmt 0)
I always forget the CONCAT and try to do it with a simple ampersand and wonder why all my data disappears!