mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
5 lines
190 B
SQL
5 lines
190 B
SQL
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
|