如何在Tableau Custom SQL中使用临时表

时间:2019-01-24 08:01:24

标签: tableau

我正在使用临时表来获取使用自定义sql进行tableu可视化的结果:

  SELECT *,

case when month(startdate) = month(enddate) then 'Y' else 'N' end as SameMonth,

into #temp

FROM t1


select a,b,c,d,e,f,g,h

from #temp where SameMonth = 'Y'

union

select a,b,c,d,e,k,l,m

from #temp where SameMonth = 'N'

0 个答案:

没有答案