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 中的日期时间获取月份和年份