mysql - 这条sql语句为什么加上where就报错?
大家讲道理
大家讲道理 2017-04-17 15:57:37
0
3
725


这条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列,但是我看了明明存在啊

大家讲道理
大家讲道理

光阴似箭催人老,日月如移越少年。

全部回覆(3)
左手右手慢动作
  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;
阿神

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

左手右手慢动作

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

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!