[Tex/LaTex] How to decrease the font size of a table in an \input file

external filesfontsizetables

I have:

\documentclass[11pt]{article}
\begin{document}
This is the main tex document.
\input{tables}
\end{document}

In the tables.tex file, I only have numerical tables. I want to decrease the size of fonts used in the table, without modifying tables.tex. Is there proper commands that I can enter right before \input{tables}?

FYI, tables.tex looks like:

\begin{table}[htbp]
\caption{table caption}
\begin{tabular}{rr}
$u$   & 0.00  
\end{tabular}
\end{table}

Best Answer

This works for me:

{\renewcommand\normalsize{\tiny}%
\normalsize
\input{tables}}