Skip to content

Commit

Permalink
Associativity of JOIN (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
therapon authored and RCHowell committed Nov 17, 2023
1 parent e9f25b6 commit bb46121
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions from.tex
Original file line number Diff line number Diff line change
Expand Up @@ -300,10 +300,10 @@ \subsection{Combining Multiple \from Items with Comma, \CROSSJOIN, or \JOIN}
\begin{lstlisting}
(*$f_1$*), (*$f_2$*), (*$f_3$*) (*$\eqv$*)
(*$f_1$*) CROSS JOIN (*$f_2$*) CROSS JOIN (*$f_3$*) (*$\eqv$*)
(*$f_1$*) LEFT JOIN (*$f_2$*) ON TRUE CROSS JOIN (*$f_3$*) ON TRUE (*$\eqv$*)
(*$f_1$*) JOIN (*$f_2$*) ON TRUE JOIN (*$f_3$*) ON TRUE (*$\eqv$*)
((*$f_1$*), (*$f_2$*)), (*$f_3$*) (*$\eqv$*)
((*$f_1$*) CROSS JOIN (*$f_2$*)) CROSS JOIN (*$f_3$*) (*$\eqv$*)
((*$f_1$*) LEFT JOIN (*$f_2$*) ON TRUE) CROSS JOIN (*$f_3$*) ON TRUE (*$\eqv$*)
((*$f_1$*) JOIN (*$f_2$*) ON TRUE) JOIN (*$f_3$*) ON TRUE (*$\eqv$*)
\end{lstlisting}

\paragraph{Semantics} Consider the following:
Expand Down

0 comments on commit bb46121

Please sign in to comment.