Joel Holtzman wrote:
> 
> Hello, via telnet with mysql server on linux, I try to delete a table, but it won't 
>work. I'm browsing the documentation, I can't see what will work. I can do this via 
>asp, but I'd love to know the command for something that should be as simple as
> 
> mysql> Delete (tablename) from (Database name);
> 
> Anybody?
> 
> Thanks


It's in there :) (the documentation that is)


use <databasename>;
drop table <tablename>;

---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to