It would be nice if I can ditch MS SQL Manager, but among other things (like support for 'Explain Plan'), I'd like to see multiple result windows for multiple queries that are executed at once, like in this silly example:
SELECT baep.id, baep.billing_id, baep.is_verified, baep.is_exported, baep.verification_at, baep.exported_at
FROM dbo.billing_admin_extra_products baep
WHERE id = 1720386;
UPDATE billing_admin_extra_products
SET is_exported = 1,
exported_at = GETDATE()
WHERE id = 1720386;
SELECT baep.id, baep.billing_id, baep.is_verified, baep.is_exported, baep.verification_at, baep.exported_at
FROM dbo.billing_admin_extra_products baep
WHERE id = 1720386;
----------------------------------------------------------------------------------------------------------------
id billing_id is_verified is_exported verification_at exported_at
1720386 663457 NULL NULL NULL NULL
----------------------------------------------------------------------------------------------------------------
(1 row(s) affected)
----------------------------------------------------------------------------------------------------------------
id billing_id is_verified is_exported verification_at exported_at
1720386 663457 NULL 1 NULL 2013-06-17 17:57:55.683