[mysql] MYSQL 업데이트 명령문 내부 조인 테이블

나는 문제가 무엇인지 전혀 모른다. MySQL 5.0을 사용하면 다음 MYSQL 업데이트 문을 실행하려고 할 때 컴파일 오류가 발생합니다.

  UPDATE  b
SET b.mapx = g.latitude,
  b.mapy = g.longitude
FROM business AS b
INNER JOIN business_geocode g ON b.business_id = g.business_id
WHERE  (b.mapx = '' or b.mapx = 0) and
  g.latitude > 0

모든 필드 이름이 정확합니다. 이견있는 사람?



답변

이 시도:

UPDATE business AS b
INNER JOIN business_geocode AS g ON b.business_id = g.business_id
SET b.mapx = g.latitude,
  b.mapy = g.longitude
WHERE  (b.mapx = '' or b.mapx = 0) and
  g.latitude > 0

최신 정보:

쿼리에서 구문 오류가 발생했다고 말 했으므로 테스트 할 수있는 일부 테이블을 작성하고 쿼리에 구문 오류가 없음을 확인했습니다.

mysql> create table business (business_id int unsigned primary key auto_increment, mapx varchar(255), mapy varchar(255)) engine=innodb;
Query OK, 0 rows affected (0.01 sec)

mysql> create table business_geocode (business_geocode_id int unsigned primary key auto_increment, business_id int unsigned not null, latitude varchar(255) not null, longitude varchar(255) not null, foreign key (business_id) references business(business_id)) engine=innodb;
Query OK, 0 rows affected (0.01 sec)

mysql> UPDATE business AS b
    -> INNER JOIN business_geocode AS g ON b.business_id = g.business_id
    -> SET b.mapx = g.latitude,
    ->   b.mapy = g.longitude
    -> WHERE  (b.mapx = '' or b.mapx = 0) and
    ->   g.latitude > 0;
Query OK, 0 rows affected (0.00 sec)
Rows matched: 0  Changed: 0  Warnings: 0

보다? 구문 오류가 없습니다. MySQL 5.5.8에 대해 테스트했습니다.


답변

SET절은 테이블 사양 뒤에 와야 합니다.

UPDATE business AS b
INNER JOIN business_geocode g ON b.business_id = g.business_id
SET b.mapx = g.latitude,
  b.mapy = g.longitude
WHERE  (b.mapx = '' or b.mapx = 0) and
  g.latitude > 0


답변

MySql WorkBench의 경우 다음을 사용하십시오.

update emp as a
inner join department b on a.department_id=b.id
set a.department_name=b.name
where a.emp_id in (10,11,12); 


답변