Skip to content
Advertisement

Stuck on getting deps through a query

I have a table, called refs, which has columns such as:

depname, refname, reftype.

Where, refname is the name of the table dependent on a view.

For this use case, I want to get all the views directly or indirectly dependent on table(s) containing ‘sapphire’ in their name.

I’m not sure how to move ahead, and link the indirectly dependencies to views that indirectly depend on it. Any help would be really appreciated!

Advertisement

Answer

In a few words, and using sql server (you didn’t tag your rdbms), you can do it like this:

You can test on this db<>fiddle

CTE behaves in a very particular way, compared with the behaviour of usual sql queries. CTE uses an anchor member and a recursive member within the CTE definition. It helps get hierarchies within a table.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement