by inserting the ReprteRegresado table and copying the data from the report table:
INSERT INTO [dbo].[ReporteEgresado]
([Observacion_ReporteEgresado]
,[Sancion_ReporteEgresado]
,[Fecha_ReporteEgresado]
,[AlumnoEgresado_Curp_AlumnoEgresado]
,[Grado_ReporteEgresado]
,[Grupo_ReporteEgresado]) select * from Reporte
I get this error:
"The selection list for the INSERT statement contains more Elements that the insert list. The number of SELECT values must match the number of INSERT columns. "