搜尋

首頁  >  問答  >  主體

mysql 報錯 ON 子句中的未知欄位 'a.plat'

select truncate(a.lat, 2) as plat, truncate(a.lng, 2) as plng, temp.latt, temp.lngt from user_post as a inner join 
(select truncate(user_post.lat, 2) as latt, truncate(user_post.lng, 2) as lngt from user_post group by latt, lngt having count(latt) >= 4 and count(lngt)>= 4) as temp 
on (a.plat = temp.latt and a.plng = temp.lngt);

為什麼會報unknown column 'a.plat' in ON clause 這樣的錯誤?

漂亮男人漂亮男人2756 天前1084

全部回覆(1)我來回復

  • phpcn_u1582

    phpcn_u15822017-06-30 09:56:48

    a別名指向的是表user_post,從你的語句來看,user_post表中有lat字段,沒有plat字段。
    所以on條件中的a.plat是不對的。

    加括號試試看:

    select a.plat, a.plng, temp.latt, temp.lngt 
    
    from 
    
    (select truncate(lat, 2) as plat, truncate(lng, 2) as plng from user_post) as a 
    
    inner join 
    
    (select truncate(lat, 2) as latt, truncate(lng, 2) as lngt from user_post group by latt, lngt having count(latt) >= 4 and count(lngt)>= 4) as temp 
    
    on a.plat = temp.latt and a.plng = temp.lngt;
    

    回覆
    0
  • 取消回覆