1
|
[root@localhost ~]# mysql -u [mysql사용자명] -p [접속하고자 하는 DB이름] -e "mysql query"
|
example)
1
2
3
4
5
6
7
8
9
|
[hadoop@master ~]$ mysql -u hadoop -p member -e "select * from student"
Enter password:
+----+-------+---------------+
| id | name | phone |
+----+-------+---------------+
| 1 | smith | 010-1111-1111 |
| 2 | kelly | 010-2222-2222 |
+----+-------+---------------+
[hadoop@master ~]$
|
-u : user의 약자
-p : password의 약자
-e : exxcute의 약자
'Centos7' 카테고리의 다른 글
작업 명령어 예약 하는 방법 (0) | 2019.05.16 |
---|