Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 340 Bytes

common-sql.md

File metadata and controls

30 lines (22 loc) · 340 Bytes

Common SQL commands in Clickhouse

Version

SELECT version()

Tables list

select * from system.tables

TimeZones

SELECT * FROM system.time_zones;

Top executed queries

SELECT
    COUNT(*) as query_count,
    query
FROM system.query_log
GROUP BY query
ORDER BY query_count DESC ;