oneuptime/Clickhouse/Docs/ClickhouseOps.md
2023-10-20 14:26:01 +01:00

356 B

Some basic commands for Clickhouse

Show tables in the database

show tables from oneuptime

Show table structure

desc table_name from oneuptime

Show table data

select * from table_name

Delete table data

truncate table_name

Delete table

drop table oneuptime.table_name