使用WHERE語句進行檢索

2021-10-06 12:34:15 字數 758 閱讀 4666

我們已經為你建好了資料庫與資料表,並新增了相應的資料內容。

你只需:

補全右側**片段中 retrieving with range 下 begin-end 區間的**,檢索表 products 中欄位 prod_price 價錢介於 3 和 5 的內容,要求顯示出商品名稱和價錢;

補全右側**片段中 retrieving with nomatches 下 begin-end 區間的**,檢索表 products 中除了 lion toy 的商品名稱和價錢。

use mall

goset nocount on

---------- retrieving with range ----------

– ********** begin ********** –

select prod_name,prod_price

from products

where prod_price between 3 and 5

– ********** end ********** –

go---------- retrieving with nomatches ----------

– ********** begin ********** –

select prod_name,prod_price

from products

where prod_name <> 『lion toy』

– ********** end ********** –

go

使用Oracle Text進行全文檢索

由於系統中資料不斷增多,使得原用的like語法來進行查詢法律全文變得十分緩慢,因此在原有系統中增加了全文檢索的功能。全文檢索功能依賴於oracle text。首先保證oracle text元件在資料庫中已安裝。然後建立索引 法律全文內容字段增加索引 create index idx flqw nr ...

使用SELECT語句檢索資料

一 進入oracle資料庫 1 sqlplus as sysdba進入資料庫,startup 是啟動資料庫。utlsampl.sql 執行這個指令碼 2 conn scott tiger 進入使用者scott,密碼是tiger 關於這個報錯解決方法 cd oracle home cd dbs ls ...

使用SELECT語句檢索資料

sql語言大小寫不敏感 sql可以寫在一行或者多行 關鍵字不能被縮寫也不能分行 各子句一般要分行寫 使用縮排提高語句的可讀性 在sqlplus中,必須用分號 結束每條sql語句。sqlplus 字元和日期型別的列左對齊 數值型別的列右對齊 預設字段顯示方式 大寫。算數運算優先順序等同於數 算優先順序...