From: Date: January 15 2004 2:30pm Subject: Re: Einer Zelle etwas =?ISO-8859-1?Q?hinzuf=FCgen?= List-Archive: http://lists.mysql.com/mysql-de/323 Message-Id: <400695E1.2030802@php.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Alex wrote: > ist es m=F6glich mit einem befehl einer tabellenzelle die schon daten=20 > beinhaltet noch daten hinzuzuf=FCgen? > wenn ja wie? ein update l=F6scht mir ja den bisherigen inhalt. CONCAT() hilft http://www.mysql.com/doc/en/String_functions.html#IDX1174 UPDATE table SET txt =3D CONCAT(txt, "foobar") WHERE ... --=20 Hartmut Holzgraefe