Rumah > Artikel > pangkalan data > Bagaimana untuk menanyakan bilangan digit dalam oracle
Kaedah: 1. Gunakan "sqlplus /as sysdba" untuk membuat pertanyaan, 64-bit akan memaparkan maklumat digit tertentu, 32-bit tidak akan dipaparkan 2. Gunakan pertanyaan paparan "v$version" akan memaparkan 64- maklumat digit bit ;3. Gunakan paparan "v$sql" untuk membuat pertanyaan, output 32-bit ialah nombor perenambelasan 8 digit, dan output 64-bit ialah nombor perenambelasan 16 digit.
Persekitaran pengendalian tutorial ini: sistem Windows 10, versi Oracle 11g, komputer Dell G3.
64-bit:
[oracle@qs-wg-db2 ~]$ sqlplus / as sysdba; SQL*Plus: Release 10.2.0.5.0 - Productionon Sun Sep 25 08:57:22 2011 Copyright (c) 1982, 2010, Oracle. All Rights Reserved. Connected to: Oracle Database 10g Enterprise EditionRelease 10.2.0.5.0 - 64bit Production With the Partitioning, OLAP, Data Miningand Real Application Testing options SQL>
Jika ia adalah 64 bit, selepas menyambung dengan sqlplus, bilangan bit tertentu akan dipaparkan, tetapi 32-bit tidak akan dipaparkan.
32-bit:
C:/Users/Administrator.DavidDai>sqlplus/ as sysdba; https://www.cndba.cn/Dave/article/1130 SQL*Plus: Release 11.2.0.1.0 Production onSun Sep 25 08:55:48 2011 Copyright (c) 1982, 2010, Oracle. All rights reserved. https://www.cndba.cn/Dave/article/1130 Connected to: Oracle Database 11g Enterprise EditionRelease 11.2.0.1.0 - Production With the Partitioning, OLAP, Data Miningand Real Application Testing options
32-bit:
SQL> select * from v$version; BANNER -------------------------------------------------------------------------- Oracle Database 11g Enterprise EditionRelease 11.2.0.1.0 - Production PL/SQL Release 11.2.0.1.0 - Productionhttps://www.cndba.cn/Dave/article/1130 CORE 11.2.0.1.0 Production TNS for 32-bit Windows: Version 11.2.0.1.0- Production NLSRTL Version 11.2.0.1.0 - Production
64-bit:
SQL> select * from v$version; BANNER ---------------------------------------------------------------- Oracle Database 10g Enterprise EditionRelease 10.2.0.5.0 - 64bi PL/SQL Release 10.2.0.5.0 - Production CORE 10.2.0.5.0 Production TNS for Linux: Version 10.2.0.5.0 -Production NLSRTL Version 10.2.0.5.0 – Production
Sama seperti kaedah pertama, 64-bit akan memaparkan bilangan digit tertentu, manakala 32-bit tidak.
32-bit: output ialah nombor heksadesimal 8 digit
SQL> select address from v$sql whererownum<2; ADDRESS --------
64- bit: output Tutorial yang disyorkan untuk nombor perenambelasan 16 digit
SQL> select address from v$sql whererownum<2; ADDRESS ---------------- 0000000196FDF7D8
Atas ialah kandungan terperinci Bagaimana untuk menanyakan bilangan digit dalam oracle. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!