如何在 Mac 中从命令行连接到 MySQL?(即给我看代码)
我正在做一个 PHP/SQL 教程,但它首先假设您已经在 MySQL 中。
见这里http://dev.mysql.com/doc/refman/5.0/en/connecting.html
mysql -u USERNAME -pPASSWORD -h HOSTNAMEORIP DATABASENAME
上面的选项意味着:
-u: username -p: password (**no space between -p and the password text**) -h: host last one is name of the database that you wanted to connect.
看链接,里面很详细!
正如已经提到的,您可以通过不像这样传递密码来避免将密码作为命令的一部分传递:
mysql -u USERNAME -h HOSTNAMEORIP DATABASENAME -p
-p编辑此答案的人:请不要在和之间添加空格PASSWORD
-p
PASSWORD