Just got a surprise and will appreciate some of the suggestions. The simple query below updates the table. I used it separately, without problems, but now it does not work, as usual, forcing the MySQL server to leave. What may be responsible. Thank.
UPDATE rmc_raw_data
INNER
JOIN handover_main
ON handover_main.handover_time = rmc_raw_data.rmc_time
AND handover_main.handover_date = rmc_raw_data.rmc_date
SET rmc_raw_data.handovers = 'Handover'
source
share