
I wish to have this table by using latex code.
Is this what you wanted ???
\documentclass[a4paper,12pt]{report}
\usepackage[inner=0.75in,outer=0.65in,top=0.75in,bottom=0.75in]{geometry}
\usepackage[sc]{mathpazo}
\usepackage{multirow}
\begin{document}
\begin{tabular}{|p{2cm} | c| c| c|}
\hline
\multirow{2}{*}{more text} & \multicolumn{3}{|c|}{} \\
\cline{2-4}
& text & text& text \\
\hline
text & text & text& text \\
\hline
text & text & text& text \\
\hline
text & text & text& text \\
\hline
text & text & text& text \\
\hline
text & text & text& text \\
\hline
\end{tabular}
\end{document}
You didn't specify anything about the alignment of the text inside the cells, so I just went with the easiest solution.

multirowpackage and\cline{i-j}(line between row i and row j). – 1010011010 May 15 '14 at 10:15