asp提取数据库要输出最后时间状态为off的id要怎么写sql语句啊
一个表有id、state和time三个项要输出最后时间state为off的id要怎么写sql语句啊如:idstatetime002on2010-1-1003off2010...
一个表有id、state和time三个项 要输出最后时间state为off的id要怎么写sql语句啊
如:
id state time
002 on 2010-1-1
003 off 2010-1-2
002 off 2010-1-3
001 off 2010-1-4
003 on 2010-1-1
应该输出
id
001
002
如:
id state time
002 on 2010-1-1
003 off 2010-1-2
002 off 2010-1-3
001 off 2010-1-4
003 on 2010-1-5
最后一条时间写错了 是5号
select [id] from table where state='off' order by [time] desc 这样写只会把有off按时间全部输出吧 输出结果应该是
003
002
001 展开
如:
id state time
002 on 2010-1-1
003 off 2010-1-2
002 off 2010-1-3
001 off 2010-1-4
003 on 2010-1-1
应该输出
id
001
002
如:
id state time
002 on 2010-1-1
003 off 2010-1-2
002 off 2010-1-3
001 off 2010-1-4
003 on 2010-1-5
最后一条时间写错了 是5号
select [id] from table where state='off' order by [time] desc 这样写只会把有off按时间全部输出吧 输出结果应该是
003
002
001 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询