sql >> Databasteknik >  >> RDS >> Mysql

MySQL Update Inner Join-tabeller fråga

Prova detta:

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

Uppdatering:

Eftersom du sa att frågan gav ett syntaxfel skapade jag några tabeller som jag kunde testa den mot och bekräftade att det inte finns något syntaxfel i min fråga:

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

Ser? Inget syntaxfel. Jag testade mot MySQL 5.5.8.



  1. Ta bort med Left Join i Oracle 10g

  2. konvertera Postgres geometriformat till WKT

  3. ORA-00933:SQL-kommandot avslutades inte korrekt

  4. Hur man återställer Galera Cluster eller MySQL-replikering från Split Brain Syndrome