SHOW TABLE - Amazon Redshift

Les traductions sont fournies par des outils de traduction automatique. En cas de conflit entre le contenu d'une traduction et celui de la version originale en anglais, la version anglaise prévaudra.

SHOW TABLE

Affiche la définition d’une table, y compris les attributs de table, les limites de table, les attributs de colonne et les limites de colonne. Vous pouvez utiliser le résultat de l'SHOWTABLEinstruction pour recréer le tableau.

Pour plus d’informations sur la création de tables, consultez CREATE TABLE.

Syntaxe

SHOW TABLE [schema_name.]table_name

Paramètres

nom_schéma

(Facultatif) Nom du schéma associé.

table_name

Nom de la table à afficher.

Exemples

Voici un exemple de SHOW TABLE sortie pour le tableausales.

show table sales;
CREATE TABLE public.sales ( salesid integer NOT NULL ENCODE az64, listid integer NOT NULL ENCODE az64 distkey, sellerid integer NOT NULL ENCODE az64, buyerid integer NOT NULL ENCODE az64, eventid integer NOT NULL ENCODE az64, dateid smallint NOT NULL, qtysold smallint NOT NULL ENCODE az64, pricepaid numeric(8,2) ENCODE az64, commission numeric(8,2) ENCODE az64, saletime timestamp without time zone ENCODE az64 ) DISTSTYLE KEY SORTKEY ( dateid );

Voici un exemple de SHOW TABLE sortie pour la table category dans le schémapublic.

show table public.category;
CREATE TABLE public.category ( catid smallint NOT NULL distkey, catgroup character varying(10) ENCODE lzo, catname character varying(10) ENCODE lzo, catdesc character varying(50) ENCODE lzo ) DISTSTYLE KEY SORTKEY ( catid );

L’exemple suivant crée une table foo avec une clé primaire.

create table foo(a int PRIMARY KEY, b int);

Les SHOW TABLE résultats affichent l'instruction create avec toutes les propriétés de la foo table.

show table foo;
CREATE TABLE public.foo ( a integer NOT NULL ENCODE az64, b integer ENCODE az64, PRIMARY KEY (a) ) DISTSTYLE AUTO;