SHOW COLUMNS
Aplica-se a: Databricks SQL Databricks Runtime
Devolve o list de columns num table. Se o table não existir, uma exceção é lançada.
Sintaxe
SHOW COLUMNS { IN | FROM } table_name [ { IN | FROM } schema_name ]
Nota
Palavras-chave IN
e FROM
são intercambiáveis.
Parameters
-
Identifica o table. O nome não deve incluir uma especificação temporal ou uma especificação de opções.
-
Uma alternativa opcional para qualificar o
table_name
com o nome schema. Quando este parâmetro é especificado, o nome table não deve ser qualificado com um nome de schema diferente.
Exemplos
-- 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