我使用以下查询创建了包含小浮动值的表
create table temp_data (val float)
但是当它给出非常小的值的警告消息时 (e-314)
insert into temp_pce_rank_data values(2.466987305926227e-314)
数据被插入并带有值'0'警告消息是:The floating point value '2.466987305926227e-314' is out of the range of computer representation (8 bytes).
如何在 SQL Server 数据库中存储和检索非常小的值 (E-314)?谢谢