Gracias por contestar, tengo una tabla con la siguiente estructura
Código SQL
[-]
CREATE TABLE `CuentasPorCobrar` (
`idColegiatura` int NOT NULL,
`idGpo` int DEFAULT NULL,
`idAlumno` int NOT NULL,
`CuentasPorCobrarMaestro` int NOT NULL,
`DiasTolerancia` int NOT NULL,
`Referencia` int NOT NULL,
`NumeroCargo` int NOT NULL,
`Importe` decimal(10,2) NOT NULL,
`FechaAplicacion` datetime NOT NULL,
`FechaVencimiento` datetime NOT NULL,
`Usuario` int NOT NULL,
`Semestre` smallint DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
y lo que necesito es obtener el total del campo importe y pasarlo a un Label
Gracias, muy agradecido