ClickHouse/tests/queries/1_stateful/00052_group_by_in.sql

5 lines
190 B
MySQL
Raw Normal View History

select StartDate, TraficSourceID in (0) ? 'type_in' : 'other' as traf_type, sum(Sign)
from test.visits
where CounterID = 842440
group by StartDate, traf_type ORDER BY StartDate, traf_type