oracle中查詢最大值用max函數(shù)。
發(fā)展壯大離不開廣大客戶長期以來的信賴與支持,我們將始終秉承“誠信為本、服務至上”的服務理念,堅持“二合一”的優(yōu)良服務模式,真誠服務每家企業(yè),認真做好每個細節(jié),不斷完善自我,成就企業(yè),實現(xiàn)共贏。行業(yè)涉及航空箱等,在成都網(wǎng)站建設、成都全網(wǎng)營銷推廣、WAP手機網(wǎng)站、VI設計、軟件開發(fā)等項目上具有豐富的設計經(jīng)驗。
如emp表中有如下數(shù)據(jù):
現(xiàn)要查詢sal的最大值,用如下語句:
select max(sal) from emp;
1、創(chuàng)建測試表,
create table test_max(id number, score number);
2、插入測試數(shù)據(jù)
insert into test_max values (1, 85);
insert into test_max values (2, 88);
insert into test_max values (3, 89);
insert into test_max values (4, 92);
3、查詢表的記錄,select t.*, rowid from test_max t;
4、編寫sql,查詢score為最大的記錄,用max函數(shù)實現(xiàn);
select t.* from test_max t where score = (select max(score) from test_max),
不知道你要的是什么,建議列出現(xiàn)在的表數(shù)據(jù)和需要查詢出的數(shù)據(jù)。
1.查詢oracle表空間的使用情況
select b.file_id文件ID,
b.tablespace_name表空間,
b.file_name 物理文件名,
b.bytes 總字節(jié)數(shù),
(b.bytes-sum(nvl(a.bytes,0))) 已使用,
sum(nvl(a.bytes,0))剩余,
sum(nvl(a.bytes,0))/(b.bytes)*100 剩余百分比
from dba_free_space a,dba_data_files b
where a.file_id=b.file_id
group by b.tablespace_name,b.file_name,b.file_id,b.bytes
order by b.tablespace_name
2.查詢oracle系統(tǒng)用戶的默認表空間和臨時表空間
select default_tablespace,temporary_tablespace from dba_users
3.查詢單張表的使用情況
select segment_name,bytes from dba_segments where segment_name = 'RE_STDEVT_FACT_DAY' and owner = USER
RE_STDEVT_FACT_DAY是您要查詢的表名稱