.show external table schema 명령
적용 대상: ✅Microsoft Fabric✅Azure Data Explorer
외부 테이블의 스키마를 JSON 또는 CSL로 반환합니다.
이 명령은 모든 형식의 외부 테이블과 관련이 있습니다. 외부 테이블의 개요는 외부 테이블을 참조 하세요.
사용 권한
이 명령을 실행하려면 데이터베이스 사용자, 데이터베이스 뷰어 또는 데이터베이스 모니터 또는 외부 테이블 관리자 권한이 있어야 합니다. 자세한 내용은 역할 기반 액세스 제어를 참조하세요.
구문
.show
external
table
TableName schema
as
(json
| csl
)
.show
external
table
TableName cslschema
구문 규칙에 대해 자세히 알아봅니다.
매개 변수
이름 | Type | 필수 | 설명 |
---|---|---|---|
TableName | string |
✔️ | 스키마를 표시할 테이블의 이름입니다. |
반품
출력 매개 변수 | Type | 설명 |
---|---|---|
TableName | string |
외부 테이블의 이름 |
스키마 | string |
JSON 형식의 테이블 스키마 |
DatabaseName | string |
테이블의 데이터베이스 이름 |
폴더 | string |
테이블의 폴더 |
DocString | string |
테이블을 문서화하는 문자열 |
예제
.show external table T schema as json
.show external table T schema as csl
.show external table T cslschema
예제 출력
json:
TableName | 스키마 | DatabaseName | 폴더 | DocString |
---|---|---|---|---|
T | {"Name":"ExternalBlob", "Folder":"ExternalTables", "DocString":"Docs", "OrderedColumns":[{"Name":"x","Type":"System.Int64","CslType":"long","DocString":""},{"Name":"s","Type":"System.String","CslType":"string","DocString":""}]} |
DB | ExternalTables | 문서 |
csl:
TableName | 스키마 | DatabaseName | 폴더 | DocString |
---|---|---|---|---|
T | x:long,s:string | DB | ExternalTables | 문서 |