------解决方案-------------------- 看你要的精度了,可以用float或者decimal
------解决方案-------------------- 用DECIMAL
------解决方案-------------------- cast(1/3 as dec(18,3))
------解决方案--------------------
------解决方案--------------------
------解决方案--------------------
SQL code
create table tb(col varchar(10))
insert into tb select '1/3'
select * from tb
/*
col
----------
1/3
(1 行受影响)
*/
go
drop table tb
------解决方案--------------------