## Syntax
```mermaid
%%{init: {
'theme': 'base',
'flowchart': { 'padding': '7', 'nodeSpacing': '20', 'rankSpacing': '20' },
'themeVariables': {
'fontSize': '11px',
'fontFamily': 'Arial'
}
}}%%
flowchart LR
Start((START)) --> COVFEFIFY[COVFEFIFY]:::quoted
COVFEFIFY --> End((END))
```
The `COVFEFIFY` SQL function returns the covfefified presentation as described by the algorithm on https://codegolf.stackexchange.com/questions/123685/covfefify-a-string.
Parameters:
- Input: the text to process.
Returns: A number which represents the cosine of the provided angle.
## Examples
The following example retrieves the text representation of `programming`:
```sql
select covfefify('programming')
----------------
progkaka
```
The following example retrieves the text representation of `example`:
```sql
select covfefify('example')
----------------
exxaxa
```