mysql--(入门语句6--浮点列)

//浮点列 float(M,D) declimal(M,D) M:精度(总位数,不包括点) D:标度(小数位) price (6,2)  9999.99 ,-9999.99html //建立一个商品表 create table goods( name varchar(10) not null default '', price float(6,2) not null default 0.00 )c
相关文章
相关标签/搜索