尝试在AWS Athena中执行以下内容。对我来说,这似乎是标准的SQL: count(case when gender='Male' then 1 end) as male_count count(case when gender is null then 1 end) as other_count,400; erro
你能帮我把这个sql翻译成Linq吗: count(case when t.TypeID = 1 then t.TypeID end) as a, count(case when t.TypeID = 3 then t.TypeID end) as c我在互联网上搜索过,发现了一些类似的sql,但没有适合这个场景的。