0

次のようなシナリオがあります: 1 つのErrorLogテーブルがあり、このテーブルに現在の日付の行がある場合 ( GETDATE()) これらの行を別の一時テーブルに保持したいので、保存された手順。これを実装するロジックについて知りたいですか?

4

1 に答える 1

0

GETDATE() function について言及したので、データベースは 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
于 2013-04-03T06:06:57.997 に答える