<a id="ksqldb-reference-show-variables"></a>

# SHOW VARIABLES statement in ksqlDB for Confluent Platform

## Synopsis

```sql
SHOW VARIABLES;
```

## Description

Shows all currently defined variables.

## Example

```sql
ksql> DEFINE replicas = '3';
ksql> DEFINE format = 'AVRO';
ksql> DEFINE topicName = '''my_topic''';
ksql> SHOW VARIABLES;

 Variable Name | Value
----------------------------
 replicas      | 3
 format        | AVRO
 topicName     | 'my_topic'
----------------------------
```
