PDA

View Full Version : how do i drop a table via ssh??


butty
Fri 19th Oct '01, 1:02am
whats the command i need to use to drop a table via ssh?

ps wasnt sure where to post this 1 but i thought with me askin a how do i this place may be best.

JamesUS
Fri 19th Oct '01, 3:06am
Connect to SSH and type this:


mysql -uUSERNAME -pPASSWORD
use DATABASENAME;
DROP TABLENAME;
exit;


Replace the words in capitals (except 'DROP') with the appropriate names.