SHOW COLUMNS
적용 대상: Databricks SQL Databricks Runtime
테이블의 열 목록을 반환합니다. 테이블이 없으면 예외가 throw됩니다.
Syntax
SHOW COLUMNS { IN | FROM } table_name [ { IN | FROM } schema_name ]
참고 항목
IN
및 FROM
키워드는 동일하게 사용할 수 있습니다.
매개 변수
-
테이블을 식별합니다. 이름에는 임시 사양 또는 옵션 사양이 포함되어서는 안됩니다.
-
스키마 이름으로
table_name
을 한정하는 선택적 대체 수단입니다. 이 매개 변수를 지정하는 경우 테이블 이름을 다른 스키마 이름으로 한정하면 안 됩니다.
예제
-- Create `customer` table in the `salessc` schema;
> USE SCHEMA salessc;
> CREATE TABLE customer(
cust_cd INT,
name VARCHAR(100),
cust_addr STRING);
-- List the columns of `customer` table in current schema.
> SHOW COLUMNS IN customer;
col_name
---------
cust_cd
name
cust_addr
-- List the columns of `customer` table in `salessc` schema.
> SHOW COLUMNS IN salessc.customer;
col_name
---------
cust_cd
name
cust_addr
-- List the columns of `customer` table in `salesdb` schema
> SHOW COLUMNS IN customer IN salessc;
col_name
---------
cust_cd
name
cust_addr