## Syntax
```mermaid
%%{init: {
'theme': 'base',
'flowchart': { 'padding': '7', 'nodeSpacing': '20', 'rankSpacing': '20' },
'themeVariables': {
'fontSize': '11px',
'fontFamily': 'Arial'
}
}}%%
flowchart LR
Start((START)) --> FROM_UNIXTIME[FROM_UNIXTIME]:::quoted
FROM_UNIXTIME --> End((END))
```
## Purpose
The `FROM_UNIXTIME` SQL function gets the date/time from an integer representing a UNIX epoch time.
Parameters:
- Input: An integer.
Returns: the date/time which the UNIX epoch time represents.