1樓:匿名使用者
分開來寫是
select * from mytable where age>=30 and age<=40
select * from mytable where age>=50 and address='保定'
取在一起寫是
select * from mytable where (age>=30 and age<=40) or (age>=50 and address='保定')
2樓:匿名使用者
age在30到40歲之間的查詢語句:
select * from mytable where age between 30 and 40
所有age大於50且adress是保定的查詢語句:
select * from mytable where age>50 and adress='保定'
如果要查詢的是地址中含有保定,則改成:
select * from mytable where age>50 and adress like '%保定%'
3樓:匿名使用者
select * from mytable where age<=40 and age>=30
select * from mytable where age>50 and adress='保定'
4樓:水晴之雨
select * from mytable where age betweem 30 and 40;
select * from mytable where age >50 and adress='保定';
資料庫的關係代數問題,資料庫的關係代數問題
1,sno,sname height 1.8米 s 2,con,credit dept 計算機系 semester 秋季 c 3,sname dept 計算機系 gender 女生 c 連線符怎麼打?我用join代替 join sc join s 4,sno,sname grade 90 s joi...
oracle資料庫的問題,希望有高手幫忙啊,我調了多小時了,還沒有調好
除數為0,那就把除數變成無限大,比如 select to char round 1 decode 0,0,999999999,1 2 fm999999990.00 from dual 其中的 decode 0,0,999999999,1 就是對除數為0做了處理,你可以把第一個0換成你實際需要的欄位,...
關於資料庫的傳遞依賴問題,資料庫中 完全函式依賴,部分函式依賴 傳遞函式依賴, 是什麼
一 部分函式依賴 設x,y是關係r的兩個屬性集合,存在x y,若x 是x的真子集,存在x y,則稱y部分函式依賴於x。例如 通過ab能得出c,通過a也能得出c,通過b也能得出c,那麼說c部分依賴於ab。二 完全函式依賴 設x,y是關係r的兩個屬性集合,x 是x的真子集,存在x y,但對每一個x 都有...