I want to insert the data in the Kibana Canvas table, but I do not work query.
How to get data using such a request?
SELECT * FROM A LEFT JOIN B ON A.key = B.key
My SQL:
SELECT a.id as idn, COUNT(*) as count, b.title as title
FROM "table_a" AS a
LEFT JOIN
"table_b" AS b
ON a.id=b.id
WHERE a.customer='1'
GROUP BY idn
ORDER BY count DESC
LIMIT 10
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.