From: Heiko Schwarzenberg Date: July 9 2003 8:17am Subject: Re: Re[3]: 2 auf einen streich List-Archive: http://lists.mysql.com/mysql-de/29 Message-Id: <1057738653.1175.22.camel@korsika> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Hallo Zusammen, > Hi s0niX, >=20 > es geht nat=FCrlich auch >=20 > DELETE > FROM testtable > WHERE > ( > (testtable.id =3D 2) > or > (testtable.id =3D 5) > ) >=20 > bei mir funktioniert aber auch=20 >=20 > DELETE testtable.* > FROM testtable > WHERE > ( > (testtable.id =3D 2) > or > (testtable.id =3D 5) > ) Folgendes geht auch und ist noch k=FCrzer : DELETE FROM testtable where id in (2,5); Gru=DF, Heiko