Custom aliases for multiple query result tabs?
Posted: Thu 17 Sep 2020 10:24
Is there any way to give a custom nickname to the query result tab that appears when executing multiple queries?
Something like DBeaver work:
This will make it so that MyName1 and MyName2 will be the title of the results tabs.
Something like DBeaver work:
Code: Select all
-- title: MyName1
SELECT *
FROM
USER
inner join USER_RULE
on USER.idUser = USER_RULE.idUser;
-- title: MyName2
SELECT *
FROM
USER
inner join USER_RULE
on USER.idUser = USER_RULE.idUser;