반응형
Mysql 기반 버전확인 방법에 대해 알아보겠습니다.
1. linux 명령어로 확인
mysql> mysql --version
mysql Ver 15.1 Distrib 10.2.32-MariaDB, for Linux (x86_64) using readline 5.1
mysql>
2. DB 접속으로 확인
ysql> mysql -uroot -p
Enter password:
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 474
Server version: 10.2.32-MariaDB MariaDB Server
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]>
3. select로 확인
MariaDB [(none)]> select version() ;
+-----------------+
| version() |
+-----------------+
| 10.2.32-MariaDB |
+-----------------+
1 row in set (0.00 sec)
4. 파라메터 확인
MariaDB [(none)]> show variables like 'version' ;
+---------------+-----------------+
| Variable_name | Value |
+---------------+-----------------+
| version | 10.2.32-MariaDB |
+---------------+-----------------+
1 row in set (0.00 sec)
MariaDB [(none)]>
이상 Mysql/MariaDB 버전 확인방법에 대해 설명하였습니다.
반응형
'Database > Mysql' 카테고리의 다른 글
Mysql/Mariadb 멀티 Insert (여러개 insert) (0) | 2020.12.16 |
---|---|
Mysql/Mariadb 컬럼 변경/추가 (0) | 2020.12.16 |
Mysql/Mariadb 테이블 및 오브젝트 정보 확인 (0) | 2020.12.16 |
MySQL/mariadb Table 및 Index Size 확인 (0) | 2020.12.16 |
Mysql/Mariadb IFNULL과 NULLIF 차이점 (0) | 2020.12.16 |
댓글