select a.guestTypeName as guestTypeName, max(e.roomPrice) as roomPrice
創(chuàng)新互聯(lián)專注于友誼企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站開發(fā),成都商城網(wǎng)站開發(fā)。友誼網(wǎng)站建設(shè)公司,為友誼等地區(qū)提供建站服務(wù)。全流程按需定制,專業(yè)設(shè)計,全程項目跟蹤,創(chuàng)新互聯(lián)專業(yè)和態(tài)度為您提供的服務(wù)
from xltbl_child_guesttype a,
xltbl_child_roompricetactic b,
xltbl_child_gt_rpt c,
xltbl_child_room_type d,
xltbl_child_rp_nomal e
where a.guestTypeId = c.guestTypeId
and a.isLook = 1
and b.roomPriceTacticId = c.roomPriceTacticId
and a.deptId = 10
and b.deptId = 10
and d.deptId = 10
and e.deptId = 10
and d.roomTypeId = e.roomTypeId
and b.roomPriceTacticId = e.tacticId
and d.roomTypeId = 'glaqdbo1-77c'
create table 新表名 as select distinct * from 舊表名
drop table 舊表名
create table 舊表名 as select * from 新表名
drop table 新表名
1。用rowid方法
據(jù)據(jù)oracle帶的rowid屬性,進(jìn)行判斷,是否存在重復(fù),語句如下:
查數(shù)據(jù):
select * from table1 a where rowid
!=(select max(rowid)
from table1 b where a.name1=b.name1 and
a.name2=b.name2......)
刪數(shù)據(jù):
delete from table1 a where rowid
!=(select max(rowid)
from table1 b where a.name1=b.name1 and
a.name2=b.name2......)
2.group by方法
查數(shù)據(jù):
select count(num), max(name) from student --列出重復(fù)的記錄數(shù),并列出他的name屬性
group by num
having count(num) 1 --按num分組后找出表中num列重復(fù),即出現(xiàn)次數(shù)大于一次
刪數(shù)據(jù):
delete from student
group by num
having count(num) 1
這樣的話就把所有重復(fù)的都刪除了。
3.用distinct方法 -對于小的表比較有用
create table table_new as select distinct *
from table1 minux
truncate table table1;
insert into table1 select * from table_new;
在平時的開發(fā)中,我們經(jīng)常遇到數(shù)據(jù)表中出現(xiàn)重復(fù)的數(shù)據(jù),那么該如何解決呢?這里介紹兩種情況下的數(shù)據(jù)去重方法,一、完全重復(fù)數(shù)據(jù)去重;二、部分字段數(shù)據(jù)重復(fù)去重。
一、完全重復(fù)數(shù)據(jù)去重方法
對于表中完全重復(fù)數(shù)據(jù)去重,可以采用以下SQL語句。
Code
CREATETABLE"#temp"AS (SELECTDISTINCT * FROM 表名);--創(chuàng)建臨時表,并把DISTINCT 去重后的數(shù)據(jù)插入到臨時表中
truncateTABLE 表名;--清空原表數(shù)據(jù)
INSERTINTO 表名(SELECT * FROM"#temp");--將臨時表數(shù)據(jù)插入到原表中
DROPTABLE"#temp";--刪除臨時表
具體思路是,首先創(chuàng)建一個臨時表,然后將DISTINCT之后的表數(shù)據(jù)插入到這個臨時表中;然后清空原表數(shù)據(jù);再講臨時表中的數(shù)據(jù)插入到原表中;最后刪除臨時表。
二、部分?jǐn)?shù)據(jù)去重方法
首先查找重復(fù)數(shù)據(jù)
select 字段1,字段2,count(*) from 表名 groupby 字段1,字段2 havingcount(*) 1
將上面的號改為=號就可以查詢出沒有重復(fù)的數(shù)據(jù)了。
想要刪除這些重復(fù)的數(shù)據(jù),可以使用下面語句進(jìn)行刪除:
deletefrom 表名 a where 字段1,字段2 in
(select 字段1,字段2,count(*) from 表名 groupby 字段1,字段2 havingcount(*) 1)
上面的語句非常簡單,就是將查詢到的數(shù)據(jù)刪除掉。不過這種刪除執(zhí)行的效率非常低,對于大數(shù)據(jù)量來說,可能會將數(shù)據(jù)庫卡死。
基于上述情況,可以先將查詢到的重復(fù)的數(shù)據(jù)插入到一個臨時表中,然后對進(jìn)行刪除,這樣,執(zhí)行刪除的時候就不用再進(jìn)行一次查詢了。如下:
CREATETABLE 臨時表 AS
(select 字段1,字段2,count(*) from 表名 groupby 字段1,字段2 havingcount(*) 1)
下面就可以進(jìn)行這樣的刪除操作了:
deletefrom 表名 a where 字段1,字段2 in (select 字段1,字段2 from 臨時表);
先建臨時表再進(jìn)行刪除的操作要比直接用一條語句進(jìn)行刪除要高效得多。
上面的語句會把所有重復(fù)的全都刪除,在oracle中,有個隱藏了自動rowid,里面給每條記錄一個唯一的rowid,我們?nèi)绻氡A糇钚碌囊粭l記錄,我們就可以利用這個字段,保留重復(fù)數(shù)據(jù)中rowid最大的一條記錄就可以了。
下面是查詢重復(fù)數(shù)據(jù)的一個例子:
select a.rowid,a.* from 表名 a
where a.rowid !=
(
selectmax(b.rowid) from 表名 b
where a.字段1 = b.字段1 and
a.字段2 = b.字段2
)
上面括號中的語句是查詢出重復(fù)數(shù)據(jù)中rowid最大的一條記錄。而外面就是查詢出除了rowid最大之外的其他重復(fù)的數(shù)據(jù)了。
由此,我們要刪除重復(fù)數(shù)據(jù),只保留最新的一條數(shù)據(jù),就可以這樣寫了:
deletefrom 表名 a
where a.rowid !=
(
selectmax(b.rowid) from 表名 b
where a.字段1 = b.字段1 and
a.字段2 = b.字段2
)
同理,上述代碼的執(zhí)行效率畢竟低,所以我們可以考慮建立臨時表,將需要判斷重復(fù)的字段、rowid插入臨時表中,然后刪除的時候在進(jìn)行比較。
createtable 臨時表 as
select a.字段1,a.字段2,MAX(a.ROWID) dataid from 正式表 a GROUPBY a.字段1,a.字段2;
deletefrom 表名 a
where a.rowid !=
(
select b.dataid from 臨時表 b
where a.字段1 = b.字段1 and
a.字段2 = b.字段2
);
commit;