I have existing table in ClickHouse. I want to find which field is an index field. How do I do it?
Asked
Active
Viewed 5,413 times
2 Answers
8
You can use SHOW CREATE TABLE my_table;
to see the primary key (index) and other settings.

Ivan Blinkov
- 2,466
- 15
- 17