当前位置:网站首页>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
边栏推荐
- postgresql中创建新用户等各种命令
- [Go language entry notes] 13. Structure (struct)
- Thoroughly understand box plot analysis
- ValueError: Expected 96 from C header, got 88 from PyObject
- 0, deep learning 21 days learning challenge 】 【 set up learning environment
- ReentrantLock(公平锁、非公平锁)可重入锁原理
- 空洞卷积
- SQL练习 2022/6/30
- 【CV-Learning】卷积神经网络
- [Deep Learning 21 Days Learning Challenge] Memo: What does our neural network model look like? - detailed explanation of model.summary()
猜你喜欢

Th in thymeleaf: href use notes

【深度学习21天学习挑战赛】3、使用自制数据集——卷积神经网络(CNN)天气识别

TensorFlow2 study notes: 5. Common activation functions

彻底搞懂箱形图分析

Usage of RecyclerView

TensorFlow2学习笔记:8、tf.keras实现线性回归,Income数据集:受教育年限与收入数据集

视图、存储过程、触发器

Kubernetes基本入门-名称空间资源(三)

Jupyter Notebook installed library;ModuleNotFoundError: No module named 'plotly' solution.

【CV-Learning】图像分类
随机推荐
动手学深度学习_线性回归
oracle的number与postgresql的numeric对比
SQL练习 2022/7/3
Kubernetes基本入门-名称空间资源(三)
PostgreSQL模式(Schema)
视图、存储过程、触发器
Transformer
Androd Day02
Install dlib step pit record, error: WARNING: pip is configured with locations that require TLS/SSL
TensorFlow2学习笔记:4、第一个神经网模型,鸢尾花分类
Pytorch语义分割理解
光条提取中的连通域筛除
pgsql函数中的return类型
Dictionary feature extraction, text feature extraction.
Briefly say Q-Q map; stats.probplot (QQ map)
sql中group by的用法
剑指 Offer 2022/7/3
IvNWJVPMLt
Android foundation [Super detailed android storage method analysis (SharedPreferences, SQLite database storage)]
Android connects to mysql database using okhttp