1樓:匿名使用者
我也試了下,確實不能直接用,只能用臨時表完成了select count(*) as c into #t
from gameuserinfo group by registerip
select max(c) from #t這個是用我的資料庫實驗的.
2樓:匿名使用者
select max(t1.times)
from
(select count(*) as times from tablea group by conditiona
) as t1
把結果集起個別名就好了
3樓:匿名使用者
你用的是內查詢,可以這樣做:
select top 1 from 表 where exists (select count(*) as times from tablea group by conditiona
oder by times desc)
4樓:匿名使用者
在末尾加個表別名即可。select max(times)from
(select count(*) as times from tablea group by conditiona
) tt
5樓:務致藍浩初
看來還是要依靠自己,其實很簡單的修改幾句**就可以搞定,已經成功實現,結貼吧
關於sql聚集函式的正確描述是什麼
SQL的函式和過程正確的描述是,關於sql聚集函式的正確描述是什麼
查詢 d.在檢視上定義新檢視 11 下列聚合函式中不忽略空值 null 的是 建立作業系統使用者 d 查詢分析器 46 關於 sql server 檔案組的敘述正確 sql函式和儲存過程的區別 函式有返回值。儲存過程沒有返回值。樓上不對吧,oracle的儲存過程可是有返回值的 關於資料庫的描述,正確...
sql中round 函式的用法
我tm不管 round 返回數字表示式並四捨五入為指定的長度或精度。語法round numeric expression length function 引數numeric expression 精確數字或近似數字資料型別類別的表示式 bit 資料型別除外 length 是 numeric expr...
sql查詢語句的問題,sql語句關於查詢的問題
select d,count from select day 訪問時間 d,ip位址,count from 訪問記錄表 where year 訪問時間 2008 and month 訪問時間 5 group by 1,2 一 如果你的資料庫伺服器獲取日期時間欄位的日數 1 31 不是day,請你修改...