When to Use
- The destination expects different column names (e.g. camelCase vs snake_case).
- You want to standardise naming across sources.
- You need to rename in the transform stage rather than the mapping stage.
Example
Renameuser_id to userId:
| Before | After |
|---|---|
| user_id | userId |