From a925a56f7587ea4c66a460e5f4fe36d44cb9a2f7 Mon Sep 17 00:00:00 2001 From: lovasoa Date: Fri, 19 Jul 2024 22:54:29 +0200 Subject: [PATCH] use concat instead of pipes --- examples/official-site/your-first-sql-website/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/official-site/your-first-sql-website/tutorial.md b/examples/official-site/your-first-sql-website/tutorial.md index f5b2e45f..6589e0b4 100644 --- a/examples/official-site/your-first-sql-website/tutorial.md +++ b/examples/official-site/your-first-sql-website/tutorial.md @@ -148,7 +148,7 @@ Now, users are present in our database, but we can’t see them. Let’s fix tha ```sql SELECT 'list' AS component, 'Users' AS title; -SELECT name AS title, name || ' is a user on this website.' as description FROM users; +SELECT name AS title, CONCAT(name, ' is a user on this website.') as description FROM users; ``` ### Your first SQLPage website is ready!