# 37.11. collation\_character\_set\_applicability

The view `collation_character_set_applicability` identifies which character set the available collations are applicable to. In PostgreSQL, there is only one character set per database (see explanation in [Section 37.7](https://www.postgresql.org/docs/current/infoschema-character-sets.html)), so this view does not provide much useful information.

#### **Table 37.9. `collation_character_set_applicability` Columns**

| <p>Column Type</p><p>Description</p>                                                                                                                                  |
| --------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| <p><code>collation\_catalog</code> <code>sql\_identifier</code></p><p>Name of the database containing the collation (always the current database)</p>                 |
| <p><code>collation\_schema</code> <code>sql\_identifier</code></p><p>Name of the schema containing the collation</p>                                                  |
| <p><code>collation\_name</code> <code>sql\_identifier</code></p><p>Name of the default collation</p>                                                                  |
| <p><code>character\_set\_catalog</code> <code>sql\_identifier</code></p><p>Character sets are currently not implemented as schema objects, so this column is null</p> |
| <p><code>character\_set\_schema</code> <code>sql\_identifier</code></p><p>Character sets are currently not implemented as schema objects, so this column is null</p>  |
| <p><code>character\_set\_name</code> <code>sql\_identifier</code></p><p>Name of the character set</p>                                                                 |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.postgresql.tw/client-interfaces/the-information-schema/collation_character_set_applicability.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
