--> 测试数据:[tbl]
if object_id('[tbl]') is not null drop table [tbl]
create table [tbl]([日期] datetime,[重量] varchar(5))
insert [tbl]
select '2012-03-15 14:24:00.000','300Kg' union all
select '2012-03-15 14:25:00.000','400Kg'
select [日期],[重量] from(
select ROW_NUMBER()over(order by datediff(mi,[日期],getdate())) as id,
* from tbl) a where id=1
/*
日期 重量
2012-03-15 14:25:00.000 400Kg
*/
MSSQL日期格式默认是这样的:yyyy-mm-dd hh:mi:ss.xxx
不知道asp.net中是什么样的
------解决方案--------------------