Thread
:
Delete all tables mysql under Linux
View Single Post
#
2
(
permalink
)
06-09-2007, 06:50 PM
nixcraft
Never say die
User
Join Date: Jan 2005
Location: BIOS
My distro: Ubuntu
Posts: 1,060
Rep Power:
10
To delete all tables just drop database :P
Code:
drop database foo;
To delete all data from table bar:
Code:
TRUNCATE TABLE bar;
__________________
Vivek
|
My personal blog
Linux Evangelist
Play hard stay cool
nixcraft
View Public Profile
Send a private message to nixcraft
Visit nixcraft's homepage!
Find all posts by nixcraft