日期:2014-05-18 浏览次数:20485 次
declare @F table (Price numeric(10,4)) insert into @F select 123243.2324 union all select 3243.2354 union all select 22.2344 select CAST(Price AS DECIMAL(18,2)) AS Price from @F /* Price --------------------------------------- 123243.23 3243.24 22.23 */