SSMS results as a clickable link

前端 未结 2 507
醉梦人生
醉梦人生 2021-01-22 03:24

I am fairly new to SQL and I have looked around to see if i could find a way to do this if it is possible

Here is my SQL query text:

SELECT *, 
CONCAT(\'         


        
相关标签:
2条回答
  • 2021-01-22 03:53

    Yes it is possible using SSMS Boost plugin: Results Grid data Visualizers

    Then you could select appropriate application(web browser) and allow for opening a new webpage.

    0 讨论(0)
  • 2021-01-22 04:02

    While I'm not certain if it's possible to have the results window push through to a browser window, you can declare the result of your query to be for xml path. this will push the URL into a new session in the query window from which you should be able to ctrl+click through to the embedded SSMS browser.

    declare @url varchar( 255 )
    
    select @url = 'http://www.google.com' -- your query here
    
    select @url for xml path
    
    0 讨论(0)
提交回复
热议问题