当前位置:网站首页>Comparison of oracle's number and postgresql's numeric
Comparison of oracle's number and postgresql's numeric
2022-08-04 06:10:00 【Big Yellow Cat No. 1】
Oracle's number and postgresql's numeric data types are both used to store precise decimal types, and the usage is basically the same. The difference between the two data types is recorded here.
oracle:
Storage range:
10^-(130)-10^128(excluding)It is stored in decimal format, which is convenient for storage, but in calculation, the system will automatically convert it into binary foroperational.
precision: [1,38]
scale: [-84,127]
The largest integer bit stored is policy-scale
The scale can be greater than the progresspg does not support, the scale can be <0, and the scale less than zero means the decimal point prefixThe single digits are all 0.
postgresql:
Storage range: Numbers up to 1000 digits of precision.
scale>=0 only supports precision>scale
边栏推荐
- [Deep Learning 21 Days Learning Challenge] 2. Complex sample classification and recognition - convolutional neural network (CNN) clothing image classification
- k9s-终端UI工具
- 【CV-Learning】卷积神经网络
- TypeError: load() missing 1 required positional argument: ‘Loader‘
- Thoroughly understand box plot analysis
- (TensorFlow)——tf.variable_scope和tf.name_scope详解
- Redis持久化方式RDB和AOF详解
- Briefly say Q-Q map; stats.probplot (QQ map)
- Linear Regression 02---Boston Housing Price Prediction
- TensorFlow2 study notes: 7. Optimizer
猜你喜欢
MySql--存储引擎以及索引
PCL1.12 解决memory.h中EIGEN处中断问题
TensorFlow2 study notes: 5. Common activation functions
(十三)二叉排序树
Th in thymeleaf: href use notes
Kubernetes基础入门(完整版)
TensorFlow2学习笔记:6、过拟合和欠拟合,及其缓解方案
[Deep Learning 21 Days Learning Challenge] 2. Complex sample classification and recognition - convolutional neural network (CNN) clothing image classification
Image-Adaptive YOLO for Object Detection in Adverse Weather Conditions
PP-LiteSeg
随机推荐
Learning curve learning_curve function in sklearn
剑指 Offer 2022/7/1
Android foundation [Super detailed android storage method analysis (SharedPreferences, SQLite database storage)]
Kubernetes基本入门-集群资源(二)
pgsql函数中的return类型
ValueError: Expected 96 from C header, got 88 from PyObject
npm install dependency error npm ERR! code ENOTFOUNDnpm ERR! syscall getaddrinfonpm ERR! errno ENOTFOUND
Pytorch语义分割理解
The difference between oracle temporary table and pg temporary table
TensorFlow:tf.ConfigProto()与Session
Data reading in yolov3 (1)
PyTorch
图像合并水平拼接
Various commands such as creating a new user in postgresql
【深度学习21天学习挑战赛】0、搭建学习环境
属性动画的用法 以及ButterKnife的用法
Linear Regression 02---Boston Housing Price Prediction
Introduction of linear regression 01 - API use cases
Kubernetes基础入门(完整版)
【深度学习21天学习挑战赛】2、复杂样本分类识别——卷积神经网络(CNN)服装图像分类