Vinothkumar Nataraj
Vinothkumar Nataraj

Reputation: 588

'mysql' is not recognized as an internal or external command, operable program or batch file

Please help me.

D:\wamp>cd D:\wamp\bin\mysql\mysql5.6.17

D:\wamp\bin\mysql\mysql5.6.17>set path=%PATH%;D:\wamp\bin\mysql\mysql5.6.17

D:\wamp\bin\mysql\mysql5.6.17>mysql -u root -p 'mysql' is not recognized as an internal or external command, operable program or batch file.

D:\wamp\bin\mysql\mysql5.6.17>

Upvotes: 3

Views: 27156

Answers (2)

twist
twist

Reputation: 103

It seems you have to specify the full path to the MySQL program itself (mysql.exe).

Use

D:\wamp\bin\mysql\mysql5.6.17\bin\mysql.exe -u username -p

Upvotes: 3

Fredo
Fredo

Reputation: 320

Maybe is the "bin" subdirectory missing in your path?

D:\wamp\bin\mysql\mysql5.6.17\bin

Upvotes: 5

Related Questions