ORACLE查詢語句

2022-06-03 18:00:04 字數 428 閱讀 9118

1樓:當win愛上

select * from table where status = 0

2樓:匿名使用者

俺英文比較菜,沒個說明,哪知道你啥表和啥表來的,找人幫忙也不用這麼簡潔吧!

3樓:匿名使用者

select a.prodid, a.prodnafrom product a

where not exists

(select 1 from order b, orderdetail c

where b.ordid = c.ordid and c.prodid = a.prodid

and b.orderdate between to_date('2012-01-01') and to_date('2012-01-31'))

oracle表空間建立語句急,Oracle表空間建立語句,急!

建立臨時表空間 create temporary tablespace test temp tempfile e oracle product 10.2.0 oradata testserver test temp01.dbf size 32m autoextend on next 32m maxs...

oracle如何查詢表空間,Oracle如何查詢表空間?

系統資料字典 dba tablespaces 中記錄了關於表空間的詳細資訊 select from sys.dba tablespaces 資料字典 dba tablespaces 中的字段和含義 tablespace name tablespace name block size tablespa...

Oracle模糊查詢中作用,oracle 模糊查詢問題

如 abc 表示以abc結尾的所有字串 abc 表示以abc 開頭的所有字串 abc 表示所有包含abc的字串 不考慮其所在位子 萬用字元 例子資料123 145 245 345 435 25 452 52如果查2 會查出245 25 如果查 2 會查出452 52 如果查 2 會查出123 245...