\documentclass[a4paper,12pt]{book}
\usepackage{booktabs}
\usepackage[hang,flushmargin]{footmisc}
\begin{document}
\begin{table}[h]
\begin{minipage}{\linewidth}
\begin{tabular}{@{}lrr@{}}
\toprule
A & B & C \\ \midrule
Text & 123 & 123 \\
Text & 123\footnote{An interesting footnote.} & 123 \\
Text & 123 & 123 \\ \midrule
Text & 12345 & 12345 \\ \bottomrule
\end{tabular}
\end{minipage}
\end{table}
\end{document}

I am using the footmisc package to insert footnotes in tables. It shows my footnotes under the tables as desired but the usual footnote separator feels redundant following the booktabs style bottom rule.
Is there a way to disable the footnote separator in these cases only while leaving them intact for the rest of the document?
I know \usepackage[norule]{footmisc} turns them off altogether, but I only need to remove them underneath tables.
