linq to sql select in inner join

时间:2013-11-05 10:09:33

标签: c# sql sql-server linq

我是linq to sql的初学者,我想知道内连接中select的语法是什么:

 inner join ( select CCL_TMA_ID as SecurityIdMax ,
                                max(CCL_DATE) as DateMax
                         from   dbo.usrCOURSCLOTURE
                         where  CCL_DONNEE is not null
                                and CCL_DATE <= @d
                         group by CCL_TMA_ID
                       )

完整查询:

 declare @d datetime
 select @d = getdate()

 select t0.CCL_TMA_ID as SecurityId ,
        t0.CCL_DATE as Date ,
        t0.CCL_DONNEE as Price ,
        t1.CCL_DONNEE as CurrencyPrice
 from   dbo.usrCOURSCLOTURE as t0
        inner join dbo.usrCOURSCLOTURE as t1 on t0.CCL_DEV_DONNEE = t1.CCL_TMA_ID
                                                and t0.CCL_DATE = t1.CCL_DATE
                                                and t1.CCL_DONNEE is not null

        inner join ( select CCL_TMA_ID as SecurityIdMax ,
                            max(CCL_DATE) as DateMax
                     from   dbo.usrCOURSCLOTURE
                     where  CCL_DONNEE is not null
                            and CCL_DATE <= @d
                     group by CCL_TMA_ID
                   ) cMax on t0.CCL_TMA_ID = SecurityIdMax
                             and t0.CCL_DATE <= DateMax
                             and t0.CCL_DATE >= DateMax-10
where t0.CCL_DATE > dateadd(year,-1,@d)

2 个答案:

答案 0 :(得分:1)

我在下面为您做了一个查询,并提供了一些解释其中一些功能的评论。 请注意,您无法基于&lt; =执行多条件连接 比如

on t0.CCL_TMA_ID = SecurityIdMax
                             and t0.CCL_DATE <= DateMax
                             and t0.CCL_DATE >= DateMax-10

你必须加入第一个条件,然后用之后的地方过滤掉它们

例如

Datetime d = Datetime.Now;
Datetime lastYear = d.AddYears(-1);
var q = from t0 in db.usrCOURSCLOTURE
        join t1 in db.usrCOURSCLOTURE.where(z => z.CCL_DONNEE.HasValue) 
        on new {a = t0.CCL_DEV_DONNEE, b = t0.CCL_DATE} equals new {a = t1.CCL_TMA_ID, b = t1.CCL_DATE}
            // the above is how to do a join on multiple conditions
        join t2 in (
            from x0 in db.usrCOURSCLOTURE.where(z => z.CCL_DONNEE.HasValue && z.CCL_DATE < d)
            .GroupBy(z => z.CCL_TMA_ID)
            select new {SecurityIdMax = x0.Key, DateMax = x0.Max(z => z.CCL_DATE)}
            //this is how you get your groupby subquery
        )
        on t0.CCL_TMA_ID equals t2.SecurityIdMax
        where
          t0.CCL_DATE  > lastYear
          && t0.CCL_DATE <= t2.DateMax
          && t0.CCL_DATE >= SqlFunctions.DateAdd("DAY", -10, t2.DateMax) //nb not sure on the interval - correct this!
        select new {SecurityId = t0.CCL_TMA_ID,
                    Date = t0.CCL_DATE,
                    Price = t0.CCL_DONNEE,
                    CurrencyPrice = t1.CCL_DONNEE};

另请注意,“SqlFunctions”类位于System.Data.Entity程序集中的命名空间System.Data.Objects.SqlClient中。

答案 1 :(得分:0)

通过将语句括在括号中,您可以创建一个数据子集,在您的情况下,将从dbo.usrCOURSCLOTURECCL_TMA_ID列中进行选择。

为了更清楚,让我们以不同的方式:

   @subsetOfData = select CCL_TMA_ID as SecurityIdMax, max(CCL_DATE) as DateMax
                      from   dbo.usrCOURSCLOTURE
                     where  CCL_DONNEE is not null and CCL_DATE <= @d
                  group by CCL_TMA_ID

然后

select t0.CCL_TMA_ID as SecurityId ,
        t0.CCL_DATE as Date ,
        t0.CCL_DONNEE as Price ,
        t1.CCL_DONNEE as CurrencyPrice
 from   dbo.usrCOURSCLOTURE as t0
        inner join dbo.usrCOURSCLOTURE as t1 on t0.CCL_DEV_DONNEE = t1.CCL_TMA_ID
                                                and t0.CCL_DATE = t1.CCL_DATE
                                                and t1.CCL_DONNEE is not null

        inner join @subsetOfData as cMax on t0.CCL_TMA_ID = SecurityIdMax
                             and t0.CCL_DATE <= DateMax
                             and t0.CCL_DATE >= DateMax-10
where t0.CCL_DATE > dateadd(year,-1,@d)