我有一个场景,比如:一个ErrorLog
表,如果此表中有任何行用于当前日期(GETDATE()
)我想将这些行保存在另一个临时表中并且需要在执行存储过程后删除此表中的当前行。我想知道实现这个的逻辑吗?
答案 0 :(得分:0)
由于您提到了GETDATE()函数,我假设数据库是SQL Server。
Select * Into #currentErrorLogTable
from ErrorLogTable
where convert(varchar(11),createdDate,101)=convert(varchar(11),getdate(),101)
Delete From ErrorLogTable
Where convert(varchar(11),createdDate,101)=convert(varchar(11),getdate(),101)
Select * from #currentErrorLogTable
drop table #currentErrorLogTable