本文介绍了删除条件重复的行(使用SQL和LINQ)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我有一个有5列的表格 ID CPT4 CPT4Mod ItemCharge Eff_Date 删除条件: 当行存在重复的 CPT4 和 CPT4Mod 字段值但不同的 ItemCharge 和 Eff_Date 值,排除除最近的 Eff_Date 记录之外的所有记录。 我需要一个可以在两种情况下实现此目的的查询。 /> 1.当用户提供CPT4Mod时。 2.当用户未提供CPT4Mod时 后来我需要使用LINQ实现相同的功能。解决方案 I have a table with 5 columnsIDCPT4CPT4ModItemChargeEff_DateDeletion Condition:When rows exists with duplicate CPT4 and CPT4Mod field values but different ItemCharge and Eff_Date values, exclude all but the most recent Eff_Date records.I need a query which can achieve this in two scenarios.1. When CPT4Mod is given by the user.2. When CPT4Mod is not given by the user.Later I need to achieve the same using LINQ. 解决方案 这篇关于删除条件重复的行(使用SQL和LINQ)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 09-12 21:47