当前位置:网站首页>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
边栏推荐
- 剑指 Offer 2022/7/1
- SQL练习 2022/7/3
- MySQL leftmost prefix principle [I understand hh]
- 剑指 Offer 2022/7/11
- pgsql函数中的return类型
- Android foundation [Super detailed android storage method analysis (SharedPreferences, SQLite database storage)]
- 多项式回归(PolynomialFeatures)
- The difference between oracle temporary table and pg temporary table
- postgres 递归查询
- [CV-Learning] Semantic Segmentation
猜你喜欢

Jupyter Notebook安装库;ModuleNotFoundError: No module named ‘plotly‘解决方案。
![[Deep Learning 21-Day Learning Challenge] 3. Use a self-made dataset - Convolutional Neural Network (CNN) Weather Recognition](/img/d0/3b8549b9704278e8ec1df03a90f80e.png)
[Deep Learning 21-Day Learning Challenge] 3. Use a self-made dataset - Convolutional Neural Network (CNN) Weather Recognition

TensorFlow2学习笔记:4、第一个神经网模型,鸢尾花分类

The pipeline mechanism in sklearn

(十一)树--堆排序

MySql--存储引擎以及索引

【深度学习21天学习挑战赛】0、搭建学习环境

Lee‘s way of Deep Learning 深度学习笔记

Install dlib step pit record, error: WARNING: pip is configured with locations that require TLS/SSL

TensorFlow2学习笔记:8、tf.keras实现线性回归,Income数据集:受教育年限与收入数据集
随机推荐
(十)树的基础部分(一)
MySql--存储引擎以及索引
超详细MySQL总结
Kubernetes集群安装
Postgresql 快照
(十四)平衡二叉树
动手学深度学习__数据操作
剑指 Offer 2022/7/12
光条中心提取方法总结(二)
sql中group by的用法
SQL的性能分析、优化
BatchNorm&&LayerNorm
Learning curve learning_curve function in sklearn
剑指 Offer 2022/7/1
动手学深度学习_线性回归
Briefly say Q-Q map; stats.probplot (QQ map)
postgresql 游标(cursor)的使用
【CV-Learning】Convolutional Neural Network
【CV-Learning】语义分割
Lee‘s way of Deep Learning 深度学习笔记