我的代码工作正常,我得到了dependecy任务。 我想算在家里的很多都处于状态"已完成"。所以在表格注释列状态:示例:notes.status ='已完成'。
如何将此添加到我的代码中,因为我还需要计算它们。 提前致谢。
SELECT
notes.id, notes.title, notes.status
FROM
notes, dependency
WHERE
dependency.task_dependency = notes.id
AND dependency.task = '7035'
ORDER BY notes.status = 'Not started' DESC
答案 0 :(得分:1)
学习使用正确的JOIN
语法!切勿在{{1}}子句中使用逗号。
我认为以下内容可以回答您的问题:
FROM