所以这一直让我发疯。我正在使用以下查询
SELECT *
FROM
CensusFacility_Records
WHERE
Division_Program ='Division 1'
ORDER by JMS_UpdateDateTime DESC
我正在尝试获取最新记录。请记住,在 Division_Program 字段中有多行带有“Division 1”。我只需要从今天开始获取包含“Division 1”的最新记录。
JMS_UpdateDateTime 字段使用月、日、年和时间格式填充时间戳(即 8/23/2013 8:00:05 AM)
我怎样才能得到今天的最新记录?
我正在更新我的问题。我正在尝试写入表中的最新记录。
当我查看表格时,最新记录未更新
<%
divrec = request.QueryString("div")
Set rstest = Server.CreateObject("ADODB.Recordset")
rstest.locktype = adLockOptimistic
sql = "SELECT TOP 1 * FROM CensusFacility_Records WHERE Division_Program ='Division 1' ORDER BY JMS_UpdateDateTime DESC"
rstest.Open sql, db
%>
<%
Shipment_Current = request.form("Shipment_Current")
Closed_Bed_Current = request.form("Closed_Bed_Current")
Available_Current = request.form("Available_Current")
rstest.fields("Shipment") = Shipment_Current
rstest.fields("Closed_Bed") = Closed_Bed_Current
rstest.fields("Current") = Available_Current
rstest.update
Response.Redirect("chooseScreen.asp")
%>