Custom aliases for multiple query result tabs?

Discussion of open issues, suggestions and bugs regarding database management and development tools for SQL Server
Post Reply
johngonzhal
Posts: 1
Joined: Thu 17 Sep 2020 10:14

Custom aliases for multiple query result tabs?

Post by johngonzhal » 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:

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;
This will make it so that MyName1 and MyName2 will be the title of the results tabs.

alexa

Re: Custom aliases for multiple query result tabs?

Post by alexa » Fri 18 Sep 2020 11:12

There is no such a possibility. Though, you can add a suggestion on the UserVoice forum where other users can vote for it https://devart.uservoice.com/forums/87893-sql-complete

We collect and analyze the information from this forum in order to make a proper roadmap for the future product releases.

Post Reply