Hi Isomorphic ,
I have a SQL datasource where I have the below field configured using customSelectExpression.
The generated query works fine on SQL workbench but on the developer console I only gets the truncated 256 characters. How can I handle this? Thanks in advance.
I have a SQL datasource where I have the below field configured using customSelectExpression.
Code:
<field name="validIds" type="text" customSelectExpression="IFNULL((select GROUP_CONCAT(distinct field_id) from my_table where name='Test'),'')"/>
Comment