I am trying to replicate this table in Latex.

However my tables always come out like this:

My code:
\begin{center}
\begin{tabular}{c|c}
\textbf{SQL} & \textbf{MONGODB} \\
Database & Database \\
Table & Collection \\
Row & Document \\
Column & Field \\
& \\
\hline
& \\
\hline
& \\
\hline
& \\
\hline
& \\
\hline
& \\
\hline
& \\
\hline
& \\
\hline
& \\
\hline
\end{tabular}
\end{center}


