Fedora 34 Workstation Edition GNOME 40 DE
LibreOffice 7.1.2(.2) Base + Firebird
Query1Concatenate works well.
SELECT "FruitCode" || "FruitName" || "FruitColor" || '*' "FruitConcatenate" FROM "Table1"
Query2Coalesce is for fields maybe null.
SELECT COALESCE ( "FruitCode", "FruitName", "FruitColor", '*' ) "FruitCoalesce" FROM "Table1"
Why doesn’t it work as described in here ?