Since this is in version 4.0.0, I’ve been using it. At the moment, my primary request would be to add an additional field to the Query Results Data Source that lets me give them a more sane name that I can reference when creating a query. Right now, I might have:
SELECT cl.name, bq.count
FROM query_48 bq
JOIN query_47 cl ON cl.char_id = bq.char_code;
and
SELECT cl.name, bq.count
FROM query_45 bq
JOIN query_47 cl ON cl.char_id = bq.char_code;
… and it’s super duper easy to get confused. I’d rather be able to do something like:
SELECT cl.name, bq.count
FROM my_friendly_name bq
JOIN my_other_friendly_name cl ON cl.char_id = bq.char_code;