我有桌子,桌子格式:
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
列的最后一个。我是怎么做的,谢谢。
答案 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)
简单SELECT
和TOP
SEELCT TOP 1 id, time_stamp
FROM yourTable
ORDER BY time_stamp DESC