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


201

나는 문제가 무엇인지 전혀 모른다. 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

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


나는 SELECT B로 변경하면 난, 별칭을 제거 * 비즈니스로부터 내부가 작동 가입 나.
진동 삶의

답변:


433

이 시도:

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에 대해 테스트했습니다.


나는 그것을 시도하고 같은 오류가 발생합니다. -실행 계획을 가져 오는 중 오류 발생 : SQL 구문에 오류가 있습니다. 1 번 라인의 '업데이트를 b로 업데이트하십시오 business_geocode g ON b.business_id = g.busines'근처에서 사용할 올바른 구문은 MySQL 서버 버전에 해당하는 매뉴얼을 확인하십시오.
Vibration Of Life

의 결과를 게시하시기 바랍니다 show create table business;하고 show create table business_geocode;그래서 나는 조금 더 내 쿼리를 테스트 할 수 있습니다. 감사.
Asaph

구문 오류가 없습니다. 방금 확인하고 답변을 업데이트했습니다.
Asaph

4
@ user719316 : 쿼리 전에 비린내 가 있습니다 ... 세미콜론이 누락 되었습니까?
Bobby

2
@Joakim AS키워드는 선택 사항입니다. 그러나 당신이 그것을 언급 했으므로 동일한 쿼리의 첫 번째 별칭에 사용했기 때문에 일관성을 위해 대답에 추가했습니다.
Asaph

15

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

-2

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); 
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.