79142758

Date: 2024-10-30 20:58:37
Score: 0.5
Natty:
Report link

Using String_AGG may be suitable to concat two fields, and by also applying string manipulation:

Try to use this:

SELECT

ID,

extra\_field,

STRING\_AGG(CONCAT('[', field1,',', SUBSTR(field2, 2))) AS field3

FROM

'your data'

GROUP BY

ID, extra\_field;

below's what I got:

image

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: marky