明輝手游網(wǎng)中心:是一個免費提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺!

刪除過時信息的容易方法!

[摘要]<% strsql="delete from info where cint(now()-ftime)>60" conn.execute strsql %> 說明:conn為connection對象,info為我們要操作的表單名,ftime為存儲信息發(fā)布時間的...

<%
strsql="delete from info where cint(now()-ftime)>60"
conn.execute strsql
%>

說明:conn為connection對象,info為我們要操作的表單名,ftime為存儲信息發(fā)布時間的字段,為長日期型,60為信息的有效期天數(shù)。now()取得當前時間。
本語句的作用是刪除發(fā)布時間超過60天的信息。