This should be replica of your image in question:

\documentclass{article}%
\usepackage[table]{xcolor} % coloring first row in table
\usepackage{array, multirow} % for multirow cells in the first columns
\usepackage[column=O]{cellspace} % for additional vertical space around cells' contents
\setlength\cellspacetoplimit{3pt}
\setlength\cellspacebottomlimit{3pt}
\begin{document}
\begin{tabular}{| c | r @{\ } >{$}Ol<{$} | >{$}c<{$} | >{$}c<{$} | >{$}c<{$} |}
{$}c<{$}|>{$}c<{$}|}
\hline
\rowcolor{blue!20}
\textbf{Parabola}
&\multicolumn{2}{c|}{\textbf{Curve}}&\textbf{Focus}
& \textbf{Dirextrix} & \textbf{Vertex} \
\hline
\multirow{2}{}{$x^2=4py$}
& up, if & p>0 & F(0,p) & y=-p & V(0,0,) \
& down, if & p<0 & F(0,p) & y=-p & V(0,0,) \
\hline
\multirow{2}{}{$y^2=4px$}
& right, if & p>0 & F(0,p) & y=-p & V(0,0,) \
& left, if & p<0 & F(0,p) & y=-p & V(0,0,) \
\hline
\end{tabular}
\end{document}
p{...}column. – Pieter van Oostrum Apr 24 '21 at 10:58