Covert data
Incorrectly formatted data can:
- Lead to mistakes
- Take time to fix
- Affect stakeholder's decision-making
Spreadsheet
Combining data from two cells
CONCAT: combine 2 valuesCONCATENATE: combine multiple values
Data validation
- Add dropdown lists with predetermined options
- Create custom checkboxes
- Protect structured data and formulas
SQL
-
CONCAT: A function that adds strings together to create new text strings that can be used as unique keysFor exemple,
CONCAT (‘Google’, ‘.com’); -
CONCAT_WS: A function that adds two or more strings together with a separatorFor exemple,
CONCAT_WS (‘ . ’, ‘www’, ‘google’, ‘com’) -
+: Adds two or more strings together using the + operatorFor exemple:
‘Google’ + ‘.com’