Thread: Mysql question.
View Single Post
  #2  
Old 12-16-2003, 02:25 AM
Conan
Hill Giant
 
Join Date: Oct 2003
Posts: 145
Default

Well depends what you want to do.


To dump the complete database to this

start run cmd or command

cd\

c:\

mysqldump -u root databasename > sqlfile.sql

Or to dump just a table do this.

mysqldump -u root databasename tablename > sqlfile.sql
Reply With Quote