Re: how to delete a database table?

2001-08-07 Thread Stefan Hinz
ons GmbH # www.js-webShop.com www.iConnect.de # Gustav-Meyer-Allee 25, 13355 Berlin # Tel: +49-30-46307-382 Fax: +49-30-46307-388 - Original Message - From: "louie miranda" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, August 07, 2001 4:15 AM

Re: how to delete a database table?

2001-08-06 Thread j.urban
To remove rows from a table: mysql> delete from your_table_name; See: http://www.mysql.com/doc/D/E/DELETE.html To completely remove the table from the database: mysql> drop table your_table_name; See: http://www.mysql.com/doc/D/R/DROP_TABLE.html On Tue, 7 Aug 2001, louie miranda wrote: >

Re: how to delete a database table?

2001-08-06 Thread Mike Blezien
DROP TABLE table_name; >>On Tue, 7 Aug 2001 10:15:43 +0800, "louie miranda" <[EMAIL PROTECTED]> >wrote: >> >> >>how can i delete a database table? >> >>ty >> >> >> >> >> >> >>louie miranda >>--- >>(axishift.ath.cx) PGPID: 0xDABA60C7 >> >> >> >> >> >>-

how to delete a database table?

2001-08-06 Thread louie miranda
how can i delete a database table? ty louie miranda --- (axishift.ath.cx) PGPID: 0xDABA60C7 - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://