I have not found a way to open the URL directly from the results SSMS
, but if you want to get an open hyperlink from SSMS
stick to the following.
Step 1. Bring the result in XML. those.
SELECT CAST('http://www.google.com' AS XML) Google
Step 2. After executing the query in the results window, click on the hyperlink. This will open another tab in SSMS.
Step 3. On this new tab, right-click on the link and select the Open URL option. A link will open in your default browser.
Try this.
source share