是否有可能在某些IF条件下对PostgreSQL使用WHERE?

问题描述 投票:2回答:2

我有以下SQL请求报告。

select customers."AppId", second_dep "SecondDeps", first_dep "FirstDeps",
       customers_count "Customers", registrations "Registrations"
From (select Count("AppId") as customers_count, "AppId"
      FROM "Customers"
               join "Advertisers" A on "Customers"."AdvertiserId" = A."AdvertiserId"
               join "Categories" C2 on "Customers"."CategoryId" = C2."CategoryId"

      where A."Name" in (:AdvertiserNames)
        AND C2."Name" = :CategoryName
      GROUP BY "AppId"
     ) as customers

         left join

     (select C."AppId", count(CE.*) as second_dep
      from "CustomerEvents" as CE
               inner join "Customers" C on CE."CustomerId" = C."CustomerId"
      WHERE "EventType" = 'deposit'
        and "Again" = TRUE
      GROUP BY C."AppId") as dep2 on customers."AppId" = dep2."AppId"

        left  join

     (select C."AppId", count(CE.*) as first_dep
      from "CustomerEvents" as CE
               inner join "Customers" C on CE."CustomerId" = C."CustomerId"
      WHERE "EventType" = 'deposit'
        and "Again" = false
      GROUP BY C."AppId") as dep on customers."AppId" = dep."AppId"

         left join

     (select C."AppId", count(CE.*) as registrations
      from "CustomerEvents" as CE
               inner join "Customers" C on CE."CustomerId" = C."CustomerId"
      WHERE "EventType" = 'registration'
      GROUP BY C."AppId") as regs on regs."AppId" = customers."AppId";

有问题的字符串是

where A."Name" in (:AdvertiserNames)

如果AdvertiserNames为空,我想跳过它。可能吗?好的,我可以在代码端进行检查,但是这种方式将导致我复制整个请求,但有一些小的差异(我的意思是如果AdvertiserNames为空,则运行不带where A."Name" in (:AdvertiserNames)的SQL)。或者,我可以使用串联来获取合适的SQL。我也不喜欢这种方式。

关于我的技术栈。它是带有PostgreSQL的.NET Core 2.2。这是整个报告方法的代码:

public IQueryable<ByApplicationsReportModel> ByApplications(string category, List<string> advertisers)
{
    var rawSql = new RawSqlString(@"
        select customers.""AppId"", second_dep ""SecondDeps"", first_dep ""FirstDeps"",
    customers_count ""Customers"", registrations ""Registrations""
            From (select Count(""AppId"") as customers_count, ""AppId""
            FROM ""Customers""
            join ""Advertisers"" A on ""Customers"".""AdvertiserId"" = A.""AdvertiserId""
            join ""Categories"" C2 on ""Customers"".""CategoryId"" = C2.""CategoryId""
            where A.""Name"" in (@AdvertiserNames)
            AND C2.""Name"" = @CategoryName
            GROUP BY ""AppId""
                ) as customers

                left join

                (select C.""AppId"", count(CE.*) as second_dep
                from ""CustomerEvents"" as CE
            inner join ""Customers"" C on CE.""CustomerId"" = C.""CustomerId""
            WHERE ""EventType"" = 'deposit'
            and ""Again"" = TRUE
            GROUP BY C.""AppId"") as dep2 on customers.""AppId"" = dep2.""AppId""

            left  join

                (select C.""AppId"", count(CE.*) as first_dep
                from ""CustomerEvents"" as CE
            inner join ""Customers"" C on CE.""CustomerId"" = C.""CustomerId""
            WHERE ""EventType"" = 'deposit'
            and ""Again"" = false
            GROUP BY C.""AppId"") as dep on customers.""AppId"" = dep.""AppId""

            left join

                (select C.""AppId"", count(CE.*) as registrations
                from ""CustomerEvents"" as CE
            inner join ""Customers"" C on CE.""CustomerId"" = C.""CustomerId""
            WHERE ""EventType"" = 'registration'
            GROUP BY C.""AppId"") as regs on regs.""AppId"" = customers.""AppId""");

    var advertisersParam = new NpgsqlParameter("AdvertiserNames",  
        string.Join(",", advertisers) );

    var categoryParam = new NpgsqlParameter("CategoryName", category);

    return _context.ByApplicationsReportModels
        .FromSql(rawSql, categoryParam, advertisersParam);
}

有什么想法吗?

c# postgresql .net-core npgsql
2个回答
3
投票

1
投票
var advertisersParam = new NpgsqlParameter("AdvertiserNames", advertisers));

在SQL中,您无需更改为x IN (@advertisers)构造,而需要更改为x = ANY (@advertisers)

注:如果要在@advertisers为空时通过检查,则仍需要一个附加子句。
© www.soinside.com 2019 - 2024. All rights reserved.