Cassandra 스키마 보기

brody·2020년 5월 18일
0

cassandra 최신버전은 현재 3.11이다.

the latest Apache Cassandra 3.11 release: 3.11.6 (pgp, sha256 and sha512), released on 2020-02-14.

지금 개발할때 쓰고있는 버전은 2.2.8이다.

  • 버전 보기
select release_version 
from system.local;
  • 모든 KEYSPACE보기
select * 
from system.schema_keyspaces;
  • 특정 keyspace의 table보기
select columnfamily_name 
from system.schema_columnfamilies 
where keyspace_name = 'audit';
  • 특정 table의 column보기
select column_name, type, validator 
from system.schema_columns 
where keyspace_name = 'audit' 
and columnfamily_name = 'user_action';
profile
일하며 하는 기록

0개의 댓글