Answers for "mysql update inner"

SQL
0

mysql update inner

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
Posted by: Guest on September-02-2021

Code answers related to "mysql update inner"

Code answers related to "SQL"

Browse Popular Code Answers by Language