I'm trying to explore the database and want to see all tables that exist there. What's the command that's equivalent to SHOW TABLES;
in SQL?
Asked
Active
Viewed 1.6k times
12

Ahmad Farid
- 14,398
- 45
- 96
- 136
3 Answers
3
Depending on the version of Cassandra, the following may work for you
SELECT * FROM system_schema.tables
Check out the other tables in the system_schema keyspace to see what other info you can get

adinas
- 4,150
- 3
- 37
- 47