Skip to content

Commit

Permalink
use concat instead of pipes
Browse files Browse the repository at this point in the history
  • Loading branch information
lovasoa committed Jul 19, 2024
1 parent c6733b4 commit a925a56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/official-site/your-first-sql-website/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -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!
Expand Down

0 comments on commit a925a56

Please sign in to comment.