DELETE FROM?
Posté : 22 juil. 2005, 15:42
Bonjour
Comment faire un DELETE FROM sur plusieurs tables?
Merci
Comment faire un DELETE FROM sur plusieurs tables?
Merci
Venez poser vos questions PHP, MySQL, HTML5, CSS, Javascript, Gestion de serveurs à la communauté PHPfrance
https://forum.phpfrance.com/
et c'est tout au début en plus...Syntaxe multi-tables :
DELETE [LOW_PRIORITY] [QUICK] [IGNORE] table_name[.*] [, table_name[.*] ...]
FROM table-references
[WHERE where_definition]
ou :
DELETE [LOW_PRIORITY] [QUICK] [IGNORE]
FROM table_name[.*] [, table_name[.*] ...]
USING table-references
[WHERE where_definition]