# SELECT GLOBAL

Inspect the setting of a global engine variable.

## Syntax

```
SELECT @@GLOBAL.variable_name

```

## Remarks

* `variable_name` is the name of a global engine variable.
* Refer to the [Permissions Matrix](https://docs.singlestore.com/db/v9.1/reference/sql-reference/security-management-commands/permissions-matrix.md) for the required permissions.

## Example

```sql
SELECT @@GLOBAL.redundancy_level;

```

```output

+---------------------------+
| @@GLOBAL.redundancy_level |
+---------------------------+
|                         1 |
+---------------------------+
1 row in set (0.00 sec)

```

***

Modified at: April 25, 2023

Source: [/db/v9.1/reference/sql-reference/operational-commands/select-global/](https://docs.singlestore.com/db/v9.1/reference/sql-reference/operational-commands/select-global/)

(An index of the documentation is available at /llms.txt)
