sql查詢語句的問題,sql語句關於查詢的問題

時間 2022-02-14 16:55:16

1樓:陽光上的橋

select d,count(*) from

(select day(訪問時間) d, ip位址,count(*) from 訪問記錄表

where year(訪問時間)=2008 and month(訪問時間)=5

group by 1,2

)一、如果你的資料庫伺服器獲取日期時間欄位的日數(1~31)不是day,請你修改為正確的函式,以及year和month。

二、如果你的資料庫伺服器不支援從seect結果中查詢,那麼可以先執行裡面的查詢語句,把結果輸出為臨時表

2樓:狗狗狗狗乖

目前能想到的最簡單的

select count(ipc) as ip,d from (select day(date) as d,count(ip) as ipc from (select ip,date from [ip] where

month(date)=month(getdate()) and year(date)=year(getdate())) as n group by day(date),ip) as m group by d

最後ip是統計數字 d是當月的天

3樓:

select count(ip位址) from table

where 訪問時間=getdate() //日期比較

group by ip位址 //通過ip 來分組 同時去重複

4樓:等待離校

select count(ip) from (select distinct ip from 表a) as 表b

5樓:玉琲

sql要配合應用程式來實現,sql太繁了不好

sql查詢語句的問題?

6樓:山高水清

日期欄位存的是日期型別(2020/03/25)還是時間型別(2020/03/25 12:03:01)?

如果是後者,那查詢時需要帶上時間點:

日期 >= '2020/03/25' and 日期 <= '2020/03/25 23:59:59' 。

前面不帶時間的預設是2020/03/25 00:00:00,後面帶時間的包含了25號整一天,從0點到24點之間。

7樓:敞篷普桑

問題分析:根據題主的描述,問題的關鍵點是date2的時間問題解析思路:date2的結果應該是2020-01-26 00:

00:00,而不是2020-01-26 23:59:

59解題方法:

在conn.open();後面加一句話

date2 = convert.todatetime(date2).toshortdatestring()+" 23:59:59"

然後執行試一下

sql查詢語句的問題

8樓:匿名使用者

select * from (

select 學生編號, sum(shouldpay) c1,sum(paid) c2,sum(preferential),c3,sum(owe) c4 from studentpayment group by 學生編號) t1 where c1<>(c4+c2+c3)

sql語句關於查詢的問題

9樓:匿名使用者

你問的sql怎麼寫,還是在頁面裡怎麼 寫出這個sql語句啊sql語句:select * from tablename where 條件=條件 or 條件 = 條件

頁面:你可以拼接sql語句 如果某個東西不為空就拼接上條件sql = "select * from table name where ";

if(使用者填的資訊 不為空)

if(使用者填的資訊 不為空)

以此類推

希望能幫到你!

sql連線查詢語句問題,SQL連線查詢語句問題!!!

簡單寫的話,sql語句就是 select top 10 title date from select title date from new union select title date from res union select title date from affiche as tbltit...

sql查詢語句問題

select from 銷售合計 where 出貨單位 like 第一醫院 and 品名 like 蘇靈 or 品名 like 尼莫地平片 也沒啥別的毛病。覺得你這裡沒有必要模糊查詢啊。你不是知道要的是什麼資料嗎,可以將like改成 select from 銷售合計 where 出貨單位 like ...

SQL語句問題,SQL語句問題

select identity int,1,1 as newid,sale.prtid as id,products.prtname as 商品名稱,sum sale.prtnum as 銷售總量 into a from sale,products where sale.prtid products...