Skip to end of banner
Go to start of banner

How to hyperlink the SQL macro results

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 12 Current »

This article explains how to convert results generated by the SQL for Confluence app into hyperlinks that navigate you to intended pages. 

Instructions

Consider an example where you are fetching a list of users from MySql database.

  1.  Fetch the list of users from the database using the following SQL query. 

    select user_name from cwd_users;


  2. To convert the result to a clickable hyperlink, use the SQL CONCAT function in a SQL query and make output format as wiki in the SQL macro.

    select CONCAT('[',user_name,'|serverURL/confluence/admin/users/viewuser.action?username=',user_name,']') as user_name from cwd_user;
  3. The above query adds user profile links as hyperlinks to the users list as shown in:


  4. Click any of the hyperlinks to navigate to the respective user profile page to view the user deatils.

  • No labels