복붙노트

[SQL] MYSQL 업데이트 문 내부는 테이블을 조인

SQL

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

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

해결법

  1. ==============================

    1.이 시도:

    이 시도:

    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에 대해 테스트.

  2. ==============================

    2.SET 절은 테이블 사양 후에 와야한다.

    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
    
  3. ==============================

    3.MySQL의 워크 벤치를 들어, 다음 사용하십시오 :

    MySQL의 워크 벤치를 들어, 다음 사용하십시오 :

    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); 
    
  4. from https://stackoverflow.com/questions/8057565/mysql-update-statement-inner-join-tables by cc-by-sa and MIT license