zoukankan
html css js c++ java
ORACLE删除重复数据
ORACLE删除重复数据
-- 删除重复数据
delete
from
t_day_imp
where
rowid
not
in
(
select
max
(rowid)
from
t_day_imp
group
by
riqi,tcity,carrier,version,platform
);
commit
;
-- 创建唯一索引
create
unique
index
udx_day_imp
on
t_day_imp(riqi,tcity,carrier,version,platform);
查看全文
相关阅读:
行转列问题
Session对象失效的客户端解决方法
Spring之依赖注入
Spring开发入门
非关系型数据库redis
Json(JavaScript Object Notation)
Ajax
JavaScript框架之JQuery
Web核心之Filter过滤器
Web核心练习之分页模块和条件模块(后台代码为主,jsp已经落伍)
原文地址:https://www.cnblogs.com/lucky110100/p/4137603.html
最新文章
从零开始的循环
hello python week one
python0.1
计算机系统
贰拾贰
贰拾壹
贰拾
壹拾玖
壹拾捌
壹拾陆
热门文章
壹拾柒
壹拾伍
壹拾肆
壹拾叁
学习使用用Eclipse编写java程序
编写高质量的代码——从命名入手
IIS配置asp.net网站
win7 iis6怎么部署.net网站
ASP.NET MVC3.0或4.0设置二级域名的方法
MVC4.0网站发布和部署到IIS7.0上的方法
Copyright © 2011-2022 走看看