version
-
MySQL 데이터베이스의 버전 확인 SQL SQL> SELECT VERSION(); VERSION()| ---------+ 8.0.29 | Command bash-4.4# mysql -V mysql Ver 8.0.29 for Linux on x86_64 (MySQL Community Server - GPL)
MySQL 버전 확인MySQL 데이터베이스의 버전 확인 SQL SQL> SELECT VERSION(); VERSION()| ---------+ 8.0.29 | Command bash-4.4# mysql -V mysql Ver 8.0.29 for Linux on x86_64 (MySQL Community Server - GPL)
2022.10.11 -
MariaDB 데이터베이스의 버전 확인 SQL SQL> SELECT VERSION(); VERSION() | -----------------------------------+ 10.8.3-MariaDB-1:10.8.3+maria~jammy| Command mysql@455c143cfa28:/$ mysql -V mysql Ver 15.1 Distrib 10.8.3-MariaDB, for debian-linux-gnu (x86_64) using EditLine wrapper
MariaDB 버전 확인MariaDB 데이터베이스의 버전 확인 SQL SQL> SELECT VERSION(); VERSION() | -----------------------------------+ 10.8.3-MariaDB-1:10.8.3+maria~jammy| Command mysql@455c143cfa28:/$ mysql -V mysql Ver 15.1 Distrib 10.8.3-MariaDB, for debian-linux-gnu (x86_64) using EditLine wrapper
2022.10.11 -
SQL Server(mssql) 데이터베이스 버전 확인 SQL SQL> SELECT @@VERSION; | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ Microsoft SQL Server 2022 (CTP2.0) - 16.0.600.9 (X64) ¶ May 20 2022 13:29:42 ¶ Copyright (C) 2022 Microsoft Corporation¶ Developer Edition (64-bit) on Li..
SQL Server(mssql) 버전 확인SQL Server(mssql) 데이터베이스 버전 확인 SQL SQL> SELECT @@VERSION; | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ Microsoft SQL Server 2022 (CTP2.0) - 16.0.600.9 (X64) ¶ May 20 2022 13:29:42 ¶ Copyright (C) 2022 Microsoft Corporation¶ Developer Edition (64-bit) on Li..
2022.10.10 -
CUBRID 데이터베이스의 버전 확인 SQL csql> select version(); === === version() ====================== '11.2.1.0677' 1 row selected. (0.003331 sec) Committed. (0.000018 sec) 1 command(s) successfully processed. Command [cubrid@689cae454053 ~]$ cubrid_rel CUBRID 11.2 (11.2.1.0677-82f461a) (64bit release build for Linux) (Jul 26 2022 18:30:33)
CUBRID 버전 확인CUBRID 데이터베이스의 버전 확인 SQL csql> select version(); === === version() ====================== '11.2.1.0677' 1 row selected. (0.003331 sec) Committed. (0.000018 sec) 1 command(s) successfully processed. Command [cubrid@689cae454053 ~]$ cubrid_rel CUBRID 11.2 (11.2.1.0677-82f461a) (64bit release build for Linux) (Jul 26 2022 18:30:33)
2022.10.10 -
PostgreSQL 데이터베이스의 버전 확인 SQL SQL> SELECT VERSION(); version | ---------------------------------------------------------------------------------------------------------------------------+ PostgreSQL 14.4 (Debian 14.4-1.pgdg110+1) on x86_64-pc-linux-gnu, compiled by gcc (Debian 10.2.1-6) 10.2.1 20210110, 64-bit| SQL> show server_version; server_version | ------------------------------+ 14.4 (Debia..
PostgreSQL 버전 확인PostgreSQL 데이터베이스의 버전 확인 SQL SQL> SELECT VERSION(); version | ---------------------------------------------------------------------------------------------------------------------------+ PostgreSQL 14.4 (Debian 14.4-1.pgdg110+1) on x86_64-pc-linux-gnu, compiled by gcc (Debian 10.2.1-6) 10.2.1 20210110, 64-bit| SQL> show server_version; server_version | ------------------------------+ 14.4 (Debia..
2022.10.10 -
ORACLE 데이터베이스의 버전을 확인해보겠습니다. SQL SQL> SELECT * FROM v$version; BANNER |CON_ID| ----------------------------------------------------------------------------+------+ Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 - 64bit Production| 0| PL/SQL Release 12.2.0.1.0 - Production | 0| CORE 12.2.0.1.0 Production | 0| TNS for Linux: Version 12.2.0.1.0 - Production | 0| NLSRTL Version 12.2.0.1.0..
ORACLE 버전 확인ORACLE 데이터베이스의 버전을 확인해보겠습니다. SQL SQL> SELECT * FROM v$version; BANNER |CON_ID| ----------------------------------------------------------------------------+------+ Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 - 64bit Production| 0| PL/SQL Release 12.2.0.1.0 - Production | 0| CORE 12.2.0.1.0 Production | 0| TNS for Linux: Version 12.2.0.1.0 - Production | 0| NLSRTL Version 12.2.0.1.0..
2022.10.10