OK. I am assuming you mean you want to get the sum of all the values in a specific column of all tables in the document.
For the example, I'll assume there are four sheets, each with one table, and, with one exception, that you have not changed the names of the sheets or the tables from their initial default names (Sheet 1, Sheet 2, Sheet 3, Sheet 4, and Table 1 on Sheets 1, 2, and 3).
The data to be summed is in column C of each table.
The sum is to be calculated in cell B2 of the table on Sheet 4, which has been reduced in size and has been renamed "Summary".
Images of the three data tables:

Here is an image of the Summary table on Sheet 4. The formula in cell B2 is shown below the table.

B2: SUM(UNION.RANGES(FALSE,Sheet 1::Table 1::C2:C10,Sheet 2::Table 1::C2:C10,Sheet 3::Table 1::C2:C10))
Details on SUM and UNION.RANGES can be found in the Function Browser (which opens in the right sidebar when you click on a cell and type = )
FALSE in the formula sets the direction in which to compact the ranges if necessary. I left it at the default value, seen in the image above.
Regards,
Barry