Hola tengo un query que tarda mas de 10 minutos y termina expirando del PHP
La tabla es la siguiente y tiene 49000 registros
Código MySQL:
Ver original `EnterpriseDocumentId` text, `ObjectChangeActionType` text, `OriginalPartnerId` text, `OriginalPartnerName` text, `ActivityDescription` text, `AdditionalInformation` text, `ServiceLevelAgreementConfirmation` text, `ServiceRequestCommittedDate` text, `VersionOfWorkEffortIdentifier` text, `DeviceTagCustomer` text, `DeviceTagDellService` text, `DeviceTagServiceProvider` text, `ProductIdentifier` text, `PhysicalLocation1` text, `PhysicalLocation2` text, `PhysicalLocation3` text, `ShipToContactTelephone` text, `MachineTypeModelNumber` text, `ActivityLineNumber` text, );
y el query que estoy haciendo es este
Código MySQL:
Ver original f.id,
DATE_FORMAT(f.BeginningTime
,'%d-%m-%Y %H:%i:%s') as fechacreacionsrv
, f.CallNumber
as servicio
, f.WorkOrderNumber
as nrocaso
, f.ResolutionTime
as fecharta
, f.AdditionalInformation
as sla
, f.SerialNumber
as nroserie
, modelos.model
AS modeloReal
, AccountName
as ctaem presa
, activitystatus.descripcion
as estadolmk
, estado,razonsocial,
f.observaciones
modelos,
estados_os,
prestadores,
activitystatus,
FROM os_dispatch_closed by CallNumber
) as x inner join os_dispatch_closed
as f
on f.CallNumber
= x.CallNumber
and f.fecha_registro
= x.fechaupd
f.id_a ctivitystatus=activitystatus.id
and f.id_estado
=estados_os.id
and f.id_prestador
=prestadores.id
como puedo optimizarlo?