简体   繁体   中英

Column 'task_id' in order clause is ambiguous

    SELECT a.*, p.*, t.*, r.*, n.* 
FROM prop_assigns AS a 
LEFT JOIN properties AS p 
ON (p.property_id = a.property_id)
 LEFT JOIN tasks AS t ON (t.task_id = a.task_id)
 LEFT JOIN reminders_tasks AS r ON (a.assign_id = r.assign_id)
 LEFT JOIN notes_view AS n ON (p.property_id = n.property_id)
 WHERE a.user_id = 3 AND a.task_id <> 0 AND
 a.assign_done = 0 AND n.user_id = 3 ORDER BY task_id desc

MySQL a répondu: Documentation

#1052 - Column 'task_id' in order clause is ambiguous

it look long sql any help

The field task_id is in more than one table. You need to specify which you mean:

SELECT a.*, p.*, t.*, r.*, n.*
FROM prop_assigns AS a LEFT JOIN
     properties AS p
     ON (p.property_id = a.property_id) LEFT JOIN
     tasks AS t
     ON (t.task_id = a.task_id) LEFT JOIN
     reminders_tasks AS r
     ON (a.assign_id = r.assign_id) LEFT JOIN
     notes_view AS n
     ON (p.property_id = n.property_id)
WHERE a.user_id = 3 AND a.task_id <> 0 AND a.assign_done = 0 AND n.user_id = 3
ORDER BY t.task_id desc;
---------^

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM