LOGIN

In CMD:

>>mysql.exe –uroot –p

>>Enter Password: ********

>>mysql>

 

It’s like this:

mysql -uusername -ppassword –hhost

Attention: There is no blank after the parameters: -u, -p, –h

 

The MySQL client program, also known as the MySQL monitor, is an interface that allows the user to connect to the MySQL server, create and modify databases, and execute queries and view their results. This program is started by executing the command mysql at the shell prompt. In general, the syntax for this command is:

%>mysql [options] [database]
 
 
HELP
 
HELP
%>mysql –help
 
 
SET PASSWORD
 
Set Password
mysql>SET PASSWORD FOR 'root'@'localhost' = PASSWORD('secret_password');

 


SELECT DATABASE

Select Database

%>mysql -u root -p mysql
  1. mysql>use mydatabase
 posted on 2013-01-26 11:42  Jiang, X.  阅读(990)  评论(0编辑  收藏  举报