[MYSQL] Syntaxe requête

Fermé
RE4 - 12 juin 2008 à 10:54
 RE4 - 12 juin 2008 à 14:13
Bonjour,

J'aimerais faire un delete de ce genre:

DELETE FROM `client` WHERE `client`.`NOM` = 'DUPONT' AND WHERE `client`.`Prénom` = 'Jean';


Quel est la bonne syntaxe ? Merci.

7 réponses

arth Messages postés 9374 Date d'inscription mardi 27 septembre 2005 Statut Contributeur Dernière intervention 16 décembre 2016 1 291
12 juin 2008 à 10:57
>Bah la syntaxe semble bonne quel est le réel problème?
0
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE `client`.`Prénom` = 'Jean' at line 1 


Voilà le problème.
0
arth Messages postés 9374 Date d'inscription mardi 27 septembre 2005 Statut Contributeur Dernière intervention 16 décembre 2016 1 291
12 juin 2008 à 11:09
Essaie :

DELETE * FROM `client` WHERE `client`.`NOM` = 'DUPONT' AND WHERE `client`.`Prénom` = 'Jean';
0
Merci mais toujours une erreur.
0

Vous n’avez pas trouvé la réponse que vous recherchez ?

Posez votre question
arth Messages postés 9374 Date d'inscription mardi 27 septembre 2005 Statut Contributeur Dernière intervention 16 décembre 2016 1 291
12 juin 2008 à 11:24
Laquelle cette fois la même?
0
requête SQL:

DELETE * FROM `client` WHERE `client`.`NOM` = 'DUPONT' AND WHERE `client`.`Prénom` = 'Jean'

MySQL a répondu:Documentation
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '* FROM `client` WHERE `client`.`NOM` = 'DUPONT' AND WHERE `client`.`Prénom` = 'J' at line 1 
0
up
0