postgres-syntax-cte-recursive
OfficialMaster recursive Common Table Expressions (CTEs) for complex queries in PostgreSQL
System Documentation
What problem does it solve?
This Skill provides comprehensive guidance on writing efficient and maintainable recursive CTEs in PostgreSQL, solving the problem of complex query management in databases.
Core Features & Use Cases
- Recursive CTE Education: Covers all aspects of recursive CTEs, from non-recursive to data-modifying, with detailed examples.
- Use Case: Learn how to use recursive CTEs for traversing hierarchical data structures like organization charts or file system trees.
- Debugging Guidance: Offers solutions for common errors like infinite loops, unexpected inlining, and performance issues.
Quick Start
Run the following SQL command to see how a recursive CTE can traverse a parent-child tree structure: WITH RECURSIVE descendants AS (SELECT id, parent_id FROM nodes WHERE id = 42 UNION ALL SELECT n.id, n.parent_id FROM nodes n JOIN descendants d ON n.parent_id = d.id) SELECT * FROM descendants;
Dependency Matrix
Required Modules
None requiredComponents
💻 Claude Code Installation
Recommended: Let Claude install automatically. Simply copy and paste the text below to Claude Code.
Please help me install this Skill: Name: postgres-syntax-cte-recursive Download link: https://github.com/Impertio-Studio/PostgreSQL-Claude-Skill-Package/archive/main.zip#postgres-syntax-cte-recursive Please download this .zip file, extract it, and install it in the .claude/skills/ directory.
Agent Skills Search Helper
Install a tiny helper to your Agent, search and equip skill from 620,000+ vetted skills library on demand.