In SQL:
select distinct(session_id) from my_table where userid = '20';
What I have in ESQL:
from my_table | where userid == 20
What should I add in the the next pipe so that it returns the unique session ids from the table? This is the link to the ESQL documentation. Which processing command is to be utilised for this?