1 posts in total

Sql

Posts tagged

SQL and Java 8 Stream Equivalent

by Mallim1 min read

Common SQL Clauses and Their Equivalents in Java 8 Streams SQL Equivalent SELECT map() DISTINCT distinct() FROM of(), stream() CROSS JOIN flatMap() INNER JOIN flatMap() with filter() LEFT OUTER JOIN flatMap() with filter() and a "default" RIGHT OUTER JOIN inver ...