column 'ttid' in where clause is ambiguous
多半是因為多表查詢的時候幾個表中同時出現了某個相同的列名,
而在查詢條件where後面又沒有指定是那個表,
而引起的又或者是查詢結果裡面有兩個相同的列名,而沒有指定是哪個表,使用的時候可以這樣,查詢前面加表名可避免出現錯誤
ambiguous 1. 含糊不清的 2. 引起歧義的
select distinct username,useralias,organname,organlevelname,jobname,
date_format(startdate,'%y-%m-%d %h:%i') startdate,
date_format(finisheddate,'%y-%m-%d %h:%i') finisheddate,
topiccount,docount2, rightcount,rightrate ,
finishedrate,ttc.userid,organid from vz019ttcount ttc
inner join vuser u on ttc.userid = u.userid inner join tbttgrade ttg
on ttc.ttid = ttg.ttid and ttc.userid = ttg.userid
where ttg.finishedmode=1 and ttc.ttid=41
order by organname,department
換一種思路解決問題
今天看到這樣乙個問題 我的資料表中有以下記錄 id type time amount 1 1 080101 100 2 1 080102 20 3 2 080101 30 4 2 080103 50 5 1 080105 10 我想在水晶報表中,用 柱圖 表示,用time和type做分組,目前顯示效...
一些解決問題的建議
1.確保自己真正了解相關問題。包括輸入什麼,輸出什麼,兩者之間是什麼關係。然後試著用您所熟悉的資料結構 如某種序列或圖結構 來表示該問題的例項。此外,有時候先直接提出乙個簡單粗暴的解決方案也有助於您理清問題的實質內容。2.找到一種歸簡方法。您是否能將相關輸入轉換成另乙個已解決問題的輸入?以及能讓其輸...
泛型解決問題一例
資料驗證規則基本都會包括最大值和最小值的規則問題,在 net 下值型別還是比較多的 int,int16,double 等等,如果根據每種情況實現這種規則的確比較麻煩。因為型別不確定因為統一封裝起來比較困難 主要是不定因素導致編寫具備封閉性處理 比較難 當不值設定值時是不能作規則斷判處理,但在 net...