Netezza Recursive Query Alternative and Examples
A recursive query is a way to query hierarchies of data, such as an organizational structure, bill-of-materials, and document hierarchy. Netezza does not support either WITH RECURSIVE Clause or Using the RECURSIVE Clause in a CREATE VIEW Statement. In this article, we will check Netezza Recursive Query Alternative with an working example. Netezza Recursive Query Alternative In the other RDBMS such as Teradata you can specify a recursive query by preceding a query with the WITH RECURSIVE clause or creating a view using the RECURSIVE clause in a CREATE VIEW…