Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
2012 年と 2013 年以外のデータベース内のすべてのレコードを削除できますか? これは、あなたが知っている可能性のある方法で可能ですか? タイムスタンプ列がないテーブルがいくつかあると確信しています。
テーブルを繰り返し処理し、次のようなクエリを実行する必要があります。
DELETE FROM -TABLENAMEHERE- WHERE dateField<X AND dateField >Y
フィールドから年を抽出して、正しいチェックを行うこともできます。
例を次に示します。SQL Server 2005 で datetime から月と年を取得する