I want to create a table like the following picture 
I tried with this code basically from this post compact bulleted points in table
\usepackage{booktabs,tabularx}
\newcolumntype{T}{>{\raggedright\arraybackslash}p{5.354cm}}
\begin{table*}
\caption{The table caption}
\begin{tabularx}{\textwidth}{|T|T|T|}
\hline
Column 1 & Column2 & Column 3\\
\hline
Multiple column and column &
\begin{tabular}[t]{ @{\makebox[1.5em][l]{\textbullet}}
p{\dimexpr\linewidth-1.5em} @{} }
multiline item text multiline item text multiline item text multiline item
text multiline item text \\
multiline item text multiline item text
\end{tabular}
&
\begin{tabular}[t]{ @{\makebox[1.5em][l]{\textbullet}} p{\dimexpr\linewidth-
1.5em} @{} }
multiline item text multiline item text multiline item text multiline item
text multiline item text \\
multiline item text multiline item text
\end{tabular} \\
\hline
\end{tabularx}
\end{table*}
The result is
But the problem is that there is some unnecessary space in the first column. I am not expert in latex. Is there any convenient and efficient way to make this type of table in latex?



tabularxhere since you do not have anyXtype column. You could simply define a smaller column\newcolumntype{A}{>{\raggedright\arraybackslash}p{2.354cm}}and then do\begin{tabular}{|A|T|T|}(and of course end the thing with\end{tabular}). – Sep 08 '18 at 20:32ltype (this has sense, if the text is short an in one column only. i suggest you that you write an answer and show this possibilities. – Zarko Sep 08 '18 at 21:45