Build Your Own Database-Driven Website Using PHP MySQL [Electronic resources]

Kevin Yank

نسخه متنی -صفحه : 190/ 106
نمايش فراداده

DROP TABLE

DROP TABLE [IF EXISTS] tbl_name [, tbl_name, ...]

This query completely deletes one or more tables. This is a dangerous query, since the data cannot be retrieved once this action is executed, so be very careful with it!

This query will fail with an error if the table doesn’t exist (unless IF EXISTS is specified) or if you don’t have the required privileges.