Concept Flow - CONCAT and CONCAT_WS
Start with strings
Apply CONCAT or CONCAT_WS
Check each argument
If CONCAT: Join all strings directly
If CONCAT_WS: Use separator between strings
Return combined string
End
The flow shows how CONCAT joins strings directly, while CONCAT_WS joins strings using a separator between them.