mysql import on windows

前端 未结 6 589
梦毁少年i
梦毁少年i 2021-01-31 09:49

I have a MySQL file, db.sql. I have tried to import it using:

mysql -uroot -p[password] db < db.sql

All I get is a listing of m

6条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-31 10:12

    If you are already logged in the try this it will be very useful, but depend upon the MySQL version, it works on MySQL 5.0

    For log in if you are not already logged in.

    mysql>[your password]

    Other wise, use the database to which you want to import the SQLDump file by command.

    mysql>use [your database name]

    And then give source the database Dump file path as blow command(If not works the copy Dump database file to the bin folder where the MySQL installed for eg. "C:/programfiles/mysql/mqlserver5.0/bin")

    mysql> source [dataBasePath+name.sql or dataBaseName.sql]

提交回复
热议问题