[DMDB] Set up join section

This commit is contained in:
2026-07-21 11:27:47 +02:00
parent 0b98da10eb
commit f9a48b191a
12 changed files with 26 additions and 0 deletions
@@ -0,0 +1,14 @@
\subsubsection{Simple Join}
\begin{algorithm}
\caption{SimpleJoin Algorithm}
\begin{algorithmic}[1]
\Procedure{SimpleJoin}{$R$, $S$}
\For{each tuple $t_R \in R$}
\For{each tuple $t_S \in S$}
\If{$\texttt{pred}(t_R, t_S)$}
\State $\texttt{add}\{ t_R, t_S \}$ to the join output
\EndFor
\EndFor
\EndProcedure
\end{algorithmic}
\end{algorithm}