首頁  >  問答  >  主體

mysql - 这条sql语句为什么加上where就报错?


这条SQL

SELECT *,SUM(tuanke_time.time) AS total_time 
FROM `tuanke_time` 
LEFT JOIN tuanke_student ON tuanke_student.Sid = tuanke_time.studentID 
WHERE total_time > 100
GROUP BY tuanke_time.studentID

加上where就报错说不存在total_time列,但是我看了明明存在啊

大家讲道理大家讲道理2743 天前729

全部回覆(3)我來回復

  • ringa_lee

    ringa_lee2017-04-17 15:59:37

    1. total_time 是你給SUM(tuanke_time.time)取得別名,資料庫表格欄位本身沒有這列吧。 total_time 是你给SUM(tuanke_time.time)取得别名,数据库表字段本身没有这列吧。

    2. 查询total_time > 100

    查詢total_time > 100,可以試試🎜🎜 🎜
    SELECT *
    FROM `tuanke_time` 
    LEFT JOIN tuanke_student ON tuanke_student.Sid = tuanke_time.studentID 
    GROUP BY tuanke_time.studentID having SUM(tuanke_time.time) > 100;

    回覆
    0
  • 阿神

    阿神2017-04-17 15:59:37

    total_time是你在查詢輸出欄位中定義的,原來的表格中沒有這個欄位。

    回覆
    0
  • ringa_lee

    ringa_lee2017-04-17 15:59:37

    外連接中on 和where是等效的,不能重複,直接去掉where

    回覆
    0
  • 取消回覆