求助寫條SQL查詢語句

2022-12-22 15:36:30 字數 698 閱讀 6824

1樓:中易文星

一併得到isread 欄位資料,這句話表達不清楚,不理解你的意思,無法幫助你

2樓:

select news.*,nreceive.isread from news as news left join newsreceive as nrecive on news.

newsid = nrecive.newsid where newsid in "& sqlmdb &" and ishide=0 and expiredtime>='" & date & "' and sendtime<='" & date & "'

3樓:

在第一句select語句中加入isread就可以了啊

4樓:

sqlmdb="select * from news where newsid in "& sqlmdb &" and ishide=0 and expiredtime>='" & date & "' and sendtime<='" & date & "'"

sql用語句查詢,SQL用語句查詢null

select from borrowbook where returndate is null 補充 select b.bookid,b.bookname,a.returndate from borrowbook as a,book as bwhere a.bookid b.bookidand a....

SQL查詢語句

select 姓名,case when 獎金型別 0 then 獎金乘數 比率 else 獎金乘數 比率 基本獎金 end from獎金錶 下一個條件應該是獎金型別不等於0吧?select 姓名,基本獎金,獎金乘數,獎金型別,比率,case 獎金型別 when 0 then 獎金乘數 比率 else...

Sql語句的TOP用法,sql查詢語句 top n的用法

select top 1 from table select top 1 2 from table 取前3行資料 區別就是 裡面可以是個表示式 沒有區別個人的習慣 在sqlserver2000中top後只可以跟常數,在2005後可以跟變數了 也許唯一的區別就是top expression 括號中可以...