Would be great if there was a comment convention, so that Heidi SQL could name the result tabs, particularly when you have multiple queries in a script. For example:
-- Result: Users-Ten
SELECT u.*
FROM Users u
LIMIT 10;
-- Result: Users-Bob
SELECT *
FROM Users u
WHERE u.first_name LIKE '%Bob%'
LIMIT 10;
That way you don't end up with two result tabs called "Users"