Column in where clause is ambiguous - What does that mean?

前端 未结 3 1564
一向
一向 2021-01-11 18:06

I\'ve come across this error in MySQL for the join clause but I\'m fairly new to the JOIN argument and I\'m not sure what this means. Can anyone help?

3条回答
  •  渐次进展
    2021-01-11 19:03

    Try this Code

    SELECT v.*
    FROM `venues` AS `v` 
    INNER JOIN `venues_meta` AS `vm` ON `vm`.`venue_id` = `v`.`id` 
    WHERE `v`.`id` = '12'
    

提交回复
热议问题