Hi guys,
I’m developing a dashboard with PostgreSQL and I need to send a url parameter to drill down:
on the first dashboard i have:
when i click the link i got the next url
http://XXXXXXXXXXXXXd/YtGPWWIZz/new-dashboard-copy?orgId=1&nombre=SAMS
Until then everything is fine, but the second dash board dont return query data.
i use the next query;
select upper(c.name) NOMBRE
from clients c
where upper(c.name) = ‘[[nombre]]’
could you help me guiding me to get url variable and query based on this variable?
best regards