Hacker News new | ask | show | jobs
by mamcx 1494 days ago
Composable is the ability to define things in the small and combine with confidence.

SQL not allow this:

    by_id := WHERE id = $1
     
    SELECT * | by_id
1 comments

CTEs provide some pretty useful composability for SQL queries. I find myself using them all the time.