Поделиться через


SHOW COLUMNS

Область применения:флажок Databricks SQL флажок Databricks Runtime

Возвращает значение list по columns в table. Если table не существует, возникает исключение.

Синтаксис

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

Примечание.

Ключевые слова IN и FROM являются взаимозаменяемыми.

Parameters

Примеры

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