-
Hi, |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Sorry, I forgot to quote correctly, the original sentence was: |
Beta Was this translation helpful? Give feedback.
-
Okay, I think I understand:
Is that correct ? The key to making this work is using markdown, and remembering that in markdown, paragraphs of text are delimited by two CREATE TABLE IF NOT EXISTS my_table (
name VARCHAR(255) PRIMARY KEY,
tags TEXT[]
);
INSERT INTO my_table (name, tags) VALUES
('Item 1', ARRAY['tag1', 'tag2', 'tag3']),
('Item 2', ARRAY['tag4', 'tag5']),
('Item 3', ARRAY['tag6', 'tag7', 'tag8', 'tag9'])
ON CONFLICT (name) DO NOTHING;
select 'table' AS component, 'tags' as markdown;
SELECT
name,
(
SELECT string_agg(tag, E'\n\n')
FROM unnest(my_table.tags) AS tag
) AS tags
FROM my_table; |
Beta Was this translation helpful? Give feedback.
-
Yes! Perfect ! Application can go to production now ;-) |
Beta Was this translation helpful? Give feedback.
Okay, I think I understand:
TEXT[]
(an array of strings), andIs that correct ?
The key to making this work is using markdown, and remembering that in markdown, paragraphs of text are delimited by two
\n
characters, not one.