Click to copy
Tables • Reviewed for ksqlDB 0.29
How to Get the Schema of a Table in ksqlDB
To find out the schema of a table, use the DESCRIBE
statement
:
DESCRIBE scores_table;
which returns :
Name : SCORES_TABLE
Field | Type
---------------------------------------------
STUDENT_ID | BIGINT (primary key)
NAME | VARCHAR(STRING)
SCORE | DOUBLE
---------------------------------------------
Was this article helpful?