# Aliasing
## Definition(s)
### Context: [[Nexus - Google Analytics Certificate Course#5.3 Google Analytics - 5 Analyze - Module 3 - Aggregate Data for Analysis Aggregate Data for Analysis|Google Analytics Certificate]]
#### Sub-context: [[SQL Function]]
>[! Definition]
>Temporarily naming a table or column in a query to make it easier to read and write
## Examples
```postgresql
SELECT
CONCAT(actor_first_name," ", actor_last_name) AS actor
FROM
movies
```
The [[AS]] Keyword invokes the Aliasing Function. . The above query
## Related
## Resources
## Flashcards
The below code are generated for use with [Spaced Repetition plugin](https://github.com/st3v3nmw/obsidian-spaced-repetition/) [docs](https://www.stephenmwangi.com/obsidian-spaced-repetition/)
Temporarily naming a table or column in a query to make it easier to read and write @@@ [[Aliasing]]