sql的題目最基礎的等,SQL的題目,最基礎的 等

2022-03-12 02:19:28 字數 1485 閱讀 3247

1樓:匿名使用者

1.select 工資 from 職工

2.select * from 倉庫

3.select 職工號 from 職工 where 工資》1230

4.select distinct 倉庫號 from 職工 where 工資》1210

5.select 職工號 from 職工

where 工資<1250 and (倉庫號='wh1' or 倉庫號='wh2')

6.select 職工號,城市 from 職工,倉庫

where (職工.倉庫號=倉庫.倉庫號)and (工資》1230)

7.select 職工號,城市 from 職工,倉庫

where(職工.倉庫號=倉庫.倉庫號) and (面積》400)

8.select 城市 from 倉庫

where 倉庫號 in (select 倉庫號 from 職工 where 工資=1250)

9.select * from 倉庫 where 倉庫號 not in (select 倉庫號 from 職工 where 工資<=1210)

and 倉庫號 in (select 倉庫號 from 職工)

10.select 職工號 from 職工

where 工資=(select 工資 from 職工 where 職工號='e4') and 職工號!='e4'

想知道完整答案也應該放點懸賞分啊

誰有sql語句的練習題 最基礎的剛開始自學中....

2樓:逐風者

看看這個教程吧。sql是以英語的語法進行書寫的,相對比較枯燥。

3樓:匿名使用者

請問有什麼自學程式設計的好方法? 一樓 的 說了那麼多,人家能接受多少 因為他很簡單,剛開始學,最主要的是興趣。我可不想一開始就被c 打倒。

4樓:匿名使用者

www.ziyuan3.com

建站資源網

關於 原始碼 程式設計學習類的。

5樓:匿名使用者

給個郵箱,我給你發個資料 ,是我學習時用的,我感覺挺好的。

有關sql server 2000的題~~~~高手指點啦!

6樓:流香羽

不能,一下語句是正確的:

select a1,a2,a3,count(*) from t1 group by a1,a2,a3

7樓:

count(*)是計數的意思

8樓:伏魔雙雷滅神

不能。你的意思是不是想分別得到資料庫中a1,b1,c1列相同的數,如果是的話

select a1,count(*) from t1 group by a1 可得到a1相同的數。

關於sql資料庫的題目求幫忙,關於SQL資料庫的題目,求幫忙

du1 zhiselect from c where ame like 資料dao庫 2 select a.s a.sname from s aleft join sc b on a.s b.s left join c on b.c c.c where c.ame maths 3 select a....

求乙份比較基礎的Access的SQL命令大全

單一查詢 1 select from 表名 2 select 欄位1,欄位2,欄位3.from 表名 3 select from 表名 where 條件 4 select 欄位1,欄位2,欄位3.from 表名 where 條件 5 select top 5 字段 from 表名 顯示某字 段前幾項...

sql查詢語句like 的問題,sql查詢語句Like 的問題

like 操作符用於在 where 子句中搜尋列中的指定模式。sql like 操作符語法 select column name s from table name where column name like pattern 萬用字元 描述 替代一個或多個字元 僅替代一個字元 charlist 字...