mysql float 什么意思
答案:2 悬赏:60 手机版
解决时间 2021-03-06 03:42
- 提问者网友:献世佛
- 2021-03-05 14:32
mysql float 什么意思
最佳答案
- 五星知识达人网友:几近狂妄
- 2021-03-05 15:45
mysql 定义float型数据请参考下列例句:
create table tt (id int,num float); -- 默认精度
alter table tt modify num float(6,2); -- 指定精度
alter table tt modify num float unsigned; -- 不带符号
alter table tt modify num float signed; -- 带符号
alter table tt modify num float(6,2) unsigned;
alter table tt modify num float(6,2) signed;
create table tt (id int,num float); -- 默认精度
alter table tt modify num float(6,2); -- 指定精度
alter table tt modify num float unsigned; -- 不带符号
alter table tt modify num float signed; -- 带符号
alter table tt modify num float(6,2) unsigned;
alter table tt modify num float(6,2) signed;
全部回答
- 1楼网友:woshuo
- 2021-03-05 17:20
float(9,2)
9是总的位数
2是小数点后的位数
如果你不设置
默认是没有小数点位数的,,自动4舍5入
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯