VB net:获取最后一栏

时间:2015-03-16 02:57:14

标签: sql vb.net

我有桌子,桌子格式:

id   time_stamp
3    2013-09-05 12:00:00
5    2013-09-06 12:00:00 
12   2013-09-07 12:00:00
2    2013-09-08 12:00:00
5    2013-09-09 12:00:00
8    2013-09-10 12:00:00

我希望得到time_stamp列的最后一个。我是怎么做的,谢谢。

2 个答案:

答案 0 :(得分:0)

我假设您使用的是DataTable,其名称为table

If table.Rows.Count > 0 Then
    Dim lastDate As String
    lastDate = table.Rows(table.Rows.Count - 1).Item(1)
    MsgBox(lastDate)
End If

输出

  

2013-09-10 12:00:00

答案 1 :(得分:0)

如果您使用的是SQL SERVER,则

简单SELECTTOP

SEELCT TOP 1 id, time_stamp
FROM yourTable
ORDER BY time_stamp DESC