mysql很不专业

mysql> SELECT 3/5;
-> 0.60

整数相除就默认变float了?一般c程序员都知道,整数相除默认整数
看看postgres和python的专业性:
postgres=# select 3/5;
?column?
----------
0
(1 row)

Python 2.6.5 (r265:79063, Apr 16 2010, 13:57:41)
[GCC 4.4.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> 3/5;
0
>>>


按照程序员习惯,想要获得浮点数,必须:
postgres=# select 3/5.0;
?column?
------------------------
0.60000000000000000000
(1 row)

Python 2.6.5 (r265:79063, Apr 16 2010, 13:57:41)
[GCC 4.4.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> 3/5.0;
0.59999999999999998


更不专业的是,居然被零除,结果是null:

mysql> SELECT 102/(1-1);
-> NULL


专业的应该是:
postgres=# select 102/(1-1);
ERROR: division by zero


>>> 102/(1-1);
Traceback (most recent call last):
File "", line 1, in
ZeroDivisionError: integer division or modulo by zero
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值