Skip to content

Commit 3e4e9cd

Browse files
xbb-ddmaycmlee
andauthored
Document concat (||) function WIP (#28915)
* Document concat (||) function WIP * Update content/en/logs/workspaces/sql_reference.md Co-authored-by: May Lee <[email protected]> --------- Co-authored-by: May Lee <[email protected]>
1 parent e1d7896 commit 3e4e9cd

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

content/en/logs/workspaces/sql_reference.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ ON orders.customer_id = customers.customer_id {{< /code-block >}} |
3030
| `GROUP BY` | Groups rows that have the same values in specified columns into summary rows. | {{< code-block lang="sql" >}}SELECT product_id, SUM(quantity)
3131
FROM sales
3232
GROUP BY product_id {{< /code-block >}} |
33+
| `\|\|` (concat) | Concatenates two or more strings together. | {{< code-block lang="sql" >}}SELECT first_name || ' ' || last_name AS full_name
34+
FROM employees {{< /code-block >}} |
3335
| `WHERE`<br>Includes support for `LIKE`, `IN`, `ON`, `OR` filters. | Filters records that meet a specified condition. | {{< code-block lang="sql" >}}SELECT *
3436
FROM employees
3537
WHERE department = 'Sales' AND name LIKE 'J%' {{< /code-block >}} |

0 commit comments

Comments
 (0)