Y
Hacker News
new
|
ask
|
show
|
jobs
by
zmgsabst
1494 days ago
I’m not sure what you mean by “composable” here — could you elaborate?
1 comments
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
link
simonw
1494 days ago
CTEs provide some pretty useful composability for SQL queries. I find myself using them all the time.
link
SQL not allow this: