共用方式為


SHOW COLUMNS

適用於: 核取記號為「是」Databricks SQL 核取記號為「是」Databricks Runtime

傳回數據表中的數據列清單。 如果數據表不存在,則會擲回例外狀況。

Syntax

SHOW COLUMNS { IN | FROM } table_name [ { IN | FROM } schema_name ]

注意

IN關鍵詞和 FROM 是可互換的。

參數

範例

-- 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