幾個sql問題!如何在sql表示幾個不等於

時間 2022-12-27 07:10:04

1樓:來自仙寓山能說會道的魯肅

* from sp

* from staf where jb=system

vip set txm=13 where left(txm,1)=6

sp where stopsp=1

is set rq='2009-02-01' where rq<'2009-01-01'

select * from jh order by rq

假設jhj和isj是浮點資料型別 要是整數型的話還需要資料型別轉換。

select * from sp where jhj/isj>

select sum(hkhj) as 單據金額之和 from jh where rq>'2008-05-01'

樓主沒寫清楚。兩張表的關聯鍵是哪兩個。

以下三題我假設sp表中的spid和jh表中的jhdh是關聯鍵。

select spmc,hkhj/jhj as 進貨數量,hkhj as 進貨金額 from sp,jh where

jhdh and >'2008-05-01'

select spbh,spmc from sp,jh where and rq>'2008-05-01'

update sp set jhj= from jh where 題沒看懂你意思 寫不了。

如何在sql表示幾個不等於 10

2樓:殤忄路

(性別 <>男』 and 民族 <>漢』 and 職業 <>幹部』)

最好是用括號括起來,再與其他條件關聯。

3樓:匿名使用者

select t.*

from t

where t.性別 <>男'

and t.民族 <>漢'

and t.職業 <>幹部'

4樓:一顆程式猿

where 性別<>'男' and 民族<>'漢' and 職業<>'幹部'

5樓:網友

可以使用!=或者<>判斷不等於,多個不等於可以使用and拼接。

結構化查詢語言(structured query language)簡稱sql,是一種特殊目的的程式語言,是一種資料庫查詢和程式設計語言,用於存取資料以及查詢、更新和管理關聯式資料庫系統;同時也是資料庫指令碼檔案的副檔名。

sql查詢多個名稱的問題

6樓:匿名使用者

select 日期, 名稱, 數量。

from 表1

where 日期 > convert(datetime, '2016-05-01 00:00:00', 102) and 日期 < convert(datetime, '2016-05-31 23:

7樓:匿名使用者

把(名稱='產品a') 這個限制條件去掉不就行了。

sql問題,一個產品有多少個使用者購買

8樓:網友

請採用以下的指令碼試試。

select [產品],count(distinct [使用者]) from [表] group by [產品]

如有疑問,及時溝通。

sql的一個問題 5

9樓:淨★星

因為用了聚合函式group by,所以select 中的 這幾列在group by後面也必須有。

sql語句的一個問題

幾個sql的問題,請幫忙回答下,謝謝!

10樓:愛琴海之玲

--1. 找出沒有選修過「李明」老師講授課程的所有學生姓名。

select from s where in (select sc.

sno from sc where not in (select from c where c.

cteacher='李明'))

其實語法很簡單 自己多思考 不然下次又得來問了 給你個例子。

sql簡單問題,sql語句的問題?

sql語句如下 update good set dspname a dspnamewhere guizu is null 其中 good為表的名字。另外想提一個小建議 你上面的問題中的詞語 櫃組 guizhu 的正確拼法應該是 guizu。別見怪,希望能幫到你。你要更新記錄的話。update 表。s...

求SQL問題答案,!!!!高分求SQL問題答案,懂得大師請幫幫忙

1,if exists select name from sysobjects where name num em and type p drop procedure num em gocreate procedure num em as 員工號 userid select count userid...

sql函式問題

getdate 是 sql server 的函式。mysql 裡面,用 now 函式mysql use test database changed mysql select getdate as currentdatetime error 1305 42000 function test.getda...