update callingroute AS t1
INNER JOIN callingroute AS t2
SET t1.day = (select date FROM (select dayname(date) from callingroute where status = 'OK')AS X)
WHERE t1.calling_route_id IS NOT NULL;
// 知道为什么会出现这些错误
update callingroute AS t1
INNER JOIN callingroute AS t2
SET t1.day = (select date FROM (select dayname(date) from callingroute where status = 'OK')AS X)
WHERE t1.calling_route_id IS NOT NULL;
// 知道为什么会出现这些错误