"MySQL 버전 확인"의 두 판 사이의 차이

(새 문서: ;MySQL 버전 확인 <source lang='dos'> [root@jmnote ~]# mysql --version mysql Ver 14.12 Distrib 5.0.95, for redhat-linux-gnu (i686) using readline 5. </source> 분류: MySQL ...)
 
1번째 줄: 1번째 줄:
;MySQL 버전 확인
;MySQL 버전 확인


==방법 1: mysql==
<source lang='dos'>
<source lang='dos'>
[root@jmnote ~]# mysql --version
[root@jmnote ~]# mysql --version
mysql  Ver 14.12 Distrib 5.0.95, for redhat-linux-gnu (i686) using readline 5.
mysql  Ver 14.12 Distrib 5.0.77, for redhat-linux-gnu (x86_64) using readline 5.1
</source>
</source>
==방법 2: mysql 접속==
<source lang='dos'>
[root@jmnote ~]# mysql -u root -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 810996
Server version: 5.0.77 Source distribution
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql>
</source>
==방법 3: SQL==
<source lang='dos'>
mysql> select version();
+-----------+
| version() |
+-----------+
| 5.0.77    |
+-----------+
1 row in set (0.00 sec)
</source>
==같이 보기==
*[[아파치 버전 확인]]


[[분류: MySQL]]
[[분류: MySQL]]
[[분류: 버전]]
[[분류: 버전]]

2013년 2월 1일 (금) 20:38 판

MySQL 버전 확인

1 방법 1: mysql

[root@jmnote ~]# mysql --version
mysql  Ver 14.12 Distrib 5.0.77, for redhat-linux-gnu (x86_64) using readline 5.1

2 방법 2: mysql 접속

[root@jmnote ~]# mysql -u root -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 810996
Server version: 5.0.77 Source distribution

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql>

3 방법 3: SQL

mysql> select version();
+-----------+
| version() |
+-----------+
| 5.0.77    | 
+-----------+
1 row in set (0.00 sec)

4 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}