명령줄에서 MySQL에 연결 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. 링크를 보세요..