Google 工作表查询 concat/append 两列结果并向结果添加文本的任何方式? (我知道工作表查询中没有连接)

Any way in Google sheets queries to concat/append results of two columns and add text to result? (I know there is no concat within sheets queries)

我很清楚 google sheet 查询中没有 concat 方法,但我希望有一个解决方法。我看到了一些转置的建议,但似乎无法将它们应用到我的使用中,希望得到帮助。

我的实际来源 sheet 在列中有更多的复杂性,但我已将其简化以进行演示

现有查询

=query($L:$N, "SELECT L, M WHERE N = 'Full' LABEL L 'Name', M ''",1)

如果 Concat/Append 可用,它看起来会更像

=query($L:$N, "SELECT ("Name is: " & L & " " & M) WHERE N = 'Full' LABEL L 'Name'",1)

谢谢!

尝试:

=ARRAYFORMULA(QUERY({"Name is: "&L10:L27&" "&M10:M27, N10:N27}, 
 "select Col1 
  where Col2 = 'Full' 
  label Col1 'Name'", 1))