Skip to content

Instantly share code, notes, and snippets.

View Guust-Franssens's full-sized avatar

Guust Franssens Guust-Franssens

View GitHub Profile
@Guust-Franssens
Guust-Franssens / tableau_project.sql
Last active October 21, 2022 07:37
Recursive Tableau project query
/*
This query returns all projects, and under which "root" project they lie.
You can adapt the "project link" so that you have an URL that points to the project.
You can combine this query with for example workbooks to find out under which root project the workbook is located.
*/
WITH RECURSIVE recur_folder_structure AS
(
SELECT s.id AS "project site id",
s.name AS "project site name",