Comment on A better SQL in 11 lines of codeparentComments−remywangOP13dWith some syntax sugar it looks almost exactly like SQL [1]. Here I’m showing the unsweetened edition for didactic purposes.[1]: https://remy.wang/blog/prela.html−troupo13dI think you'd want to format it like SQL blocks to separate various concepts and where data is coming from movie.with( company.s(country).eq("[us]" ) .and( keyword.eq("character-name-in-title") ) .select( title .and( cast.s(person).s(alias).s(text) ) )
Comments
With some syntax sugar it looks almost exactly like SQL [1]. Here I’m showing the unsweetened edition for didactic purposes.
[1]: https://remy.wang/blog/prela.html
I think you'd want to format it like SQL blocks to separate various concepts and where data is coming from