# Use Case & Examples

## 1. Retrieve values that are exactly 10 characters long

```sql
SELECT column_name
FROM your_table
WHERE CHAR_LENGTH(column_name) = 10;
```

In this query:

* Replace `column_name` with the name of the column we want to check the length of.
* Replace `your_table` with the name of our table.

This query will return all rows where the specified column contains values that are exactly 10 characters long.


---

# 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://www.pranaypourkar.co.in/the-programmers-guide/database/platform-specific-features/mysql/use-case-and-examples.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.
