Comment table
데이터베이스나 스프레드시트의 테이블 주석(메타데이터)을 표시하는 방법을 제공합니다.
앱에 없는 테이블 이름은 무시됩니다. 테이블 이름이 여러 번 발견되는 경우 마지막 값이 사용됩니다. 키워드를 사용하여 데이터 소스에서 주석을 읽을 수 있습니다.
구문:
comment [tables] tablelist using mapname
comment [table] tablename with comment
인수:
인수 | 설명 |
---|---|
tablelist | (table{,table}) |
mapname | 이전에 mapping LOAD 또는 mapping SELECT 문으로 읽은 매핑 테이블의 이름입니다. |
tablename | 주석을 추가할 테이블의 이름입니다. |
comment | 테이블에 추가할 주석입니다. |
예 1:
Commentmap:
mapping LOAD * inline [
a,b
Main,This is the fact table
Currencies, Currency helper table
];
comment tables using Commentmap;
예 2:
comment table Main with 'Main fact table';