From 05b073812c9033a5589dd8e4a23f04342d511f09 Mon Sep 17 00:00:00 2001 From: Matthias Lodner Date: Fri, 6 Feb 2026 00:32:14 +0100 Subject: [PATCH] Updated query and added bio text styling. --- bartender/README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bartender/README.md b/bartender/README.md index ab0e161..5c6fc3f 100644 --- a/bartender/README.md +++ b/bartender/README.md @@ -13,6 +13,7 @@ SELECT a.name AS product, COALESCE(v.name, a.name) AS name, CONCAT(CONCAT(v.weight, ' '), u.display) AS weight, a.bio AS bio, + v.ean AS ean, COALESCE(v.description, a.description) AS description, CONCAT(COALESCE(v.ingredients, a.ingredients), s.bio_info) AS ingredients, CONCAT( @@ -34,7 +35,6 @@ FROM article AS a INNER JOIN unit AS u ON v.unit_id = u.id INNER JOIN label AS l ON v.label_id = l.id ORDER BY a.name, v.weight ASC - ``` --- @@ -61,5 +61,6 @@ ORDER BY a.name, v.weight ASC ### BIO text ```html - +

+

```