paip.输入法编程---带ord gudin去重复-
paip.输入法编程---带ord gudin去重复-
作者Attilax , EMAIL:1466519819@qq.com
来源:attilax的专栏
地址:http://blog.csdn.net/attilax
--------查询重复(不同ORD)
SELECT
hezi,
atian,
gudin,
count(id) AS num
FROM
gaopinzi
WHERE
LENGTH(atian) > 0 and ( del is null or del=0) and lang='chinese'
GROUP BY
hezi,
atian
HAVING
num > 1
-----------加入临时表.
DELETE from tmp_tsiku;
insert tmp_tsiku(hezi,atian,gudin,lang)
SELECT
hezi,
atian,
gudin,
count(id) AS num
FROM
gaopinzi
WHERE
LENGTH(atian) > 0 and ( del is null or del=0) and lang='chinese'
GROUP BY
hezi,
atian
HAVING
num > 1
;
select * from tmp_tsiku
去重复存储过程 conf_del
----------------------
原理如下:
for( tmp_tsiku )
if(getTsityao_count(hezi,py))
{
baolyeu_id= get_top1(hezi,py);
del_other(hezi,py,baolyeu_id);
}
BEGIN
#Routine body goes here...
declare tmpName varchar(200) default '' ;
declare var_ati varchar(200) default '' ;
declare havgudin int;
declare gundi_id int;
declare rownum int;
declare tsityao_count int;
declare baolyeu_id int;
declare tmpint int;
DECLARE isRecordNotFound int;
declare cur1 CURSOR FOR select hezi,atian from tmp_tsiku where 1=1 ;
declare continue handler for not found set isRecordNotFound = 1;
-- Oracle的PL/SQL的指针有个隐性变量%notfound,
-- Mysql是通过一个Error handler的声明来进行判断的,
-- declare continue handler for Not found (do some action);
-- 在Mysql里当游标遍历溢出时,会出现一个预定义的NOT FOUND的Error,
-- 我们处理这个Error并定义一个continue的handler就可以了
-- 下面一句不能没有,否则将会进不了while循环
set isRecordNotFound = 0;
set rownum=1;
/*开游标*/
#set tmpName=; set var_ati
OPEN cur1;
/*游标向下走一步*/
FETCH cur1 INTO tmpName,var_ati;
/* 循环体 这很明显 把游标查询出的 name 都加起并用 ; 号隔开 */
WHILE ( isRecordNotFound = 0 ) DO
set tsityao_count=getTsityao_count(tmpName,var_ati);
if tsityao_count>1 THEN
select havgudin,rownum ;
set
baolyeu_id= get_top1(tmpName,var_ati);
select gundi_id,rownum ;
set
tmpint= del_other(tmpName,var_ati,baolyeu_id);
end if;
set rownum=rownum+1;
/*yao jya jeig select ,beri zweiheu yg result b show chwlai.. */
select 'the end';
/*游标向下走一步*/
FETCH cur1 INTO tmpName,var_ati;
END WHILE;
CLOSE cur1;
END
-------getTsityao_count---------
BEGIN
#Routine body goes here...
DECLARE gudinid int ;
set @gudinid= (
SELECT
COUNT(*)
FROM
gaopinzi
WHERE
(del IS NULL OR del = 0)
AND lang = 'chinese'
AND hezi = hezi
AND atian =py
);
RETURN @gudinid;
END
--------get_top1-----------
BEGIN
#Routine body goes here...
DECLARE gudinid int ;
set @gudinid= ( select id from gaopinzi where lang='chinese' and HEZI=hezix and ATIAN=py
and (del is null or del=0)
order by gudin desc,ord,id
limit 1
);
RETURN @gudinid;
END
---------del_other---------
BEGIN
#Routine body goes here...
#select SQL_NO_CACHE del_no_gudin ('一','y',3192) c1
declare tmpName INT;
/*
update gaopinzi set del=1,deltime=now(),dely='del no-gudin'
*/
#SET NAMES 'utf8';
insert tmp(id,hezi,py)
select id,hezi,atian from gaopinzi
where lang='chinese' and HEZI=hezix and atian=py
and ( del is null or del=0)
and id!=baolyeuid
;
RETURN tmpName;
END
检查得到的tmp是否OK.
-----------
触发器日志
---------
以便进行误删除恢复..
CREATE TRIGGER `deladdtime` AFTER UPDATE ON `gaopinzi` FOR EACH ROW begin
insert logx(idop,eventx,timex,demo,hezi,pyold,pynew)values( old.id,'update rec',now(),'',old.hezi,old.atian,new.atian);
end;
删除虫复
-----------
update gaopinzi set del=1,deltime=now(),dely='del no-gudin'
where id in (select id from tmp)
----------恢复误删除的记录
select * from logx WHERE id>=6 and id<=10
(select idop from logx WHERE id>=6 and id<=10);
select * from gaopinzi where id in (13083,15319,15736,16030,137815);
UPDATE gaopinzi set del=0,deltime=now(),dely='hweif' where id in (13083,15319,15736,16030,137815);
select * from gaopinzi where id=137815
------------------已下为测试SQL--------------
------------------已下为测试SQL--------------
select * from gaopinzi where lang='chinese' and HEZI='七' and ( del is null or del=0) order by id
limit 7;
select * from gaopinzi where lang='chinese' and HEZI='一' and ( del is null or del=0)
exec QUERY_chonf_nosame_ord
-----查询是否有重复的记录...
SELECT
COUNT(*)
FROM
gaopinzi
WHERE
LENGTH(hezi) = 3
AND (del IS NULL OR del = 0)
AND lang = 'chinese'
AND hezi = '针'
AND atian = 'jenjs'
ORDER BY
gudin DESC,
ord
-------得到要保留的ID
SELECT
*
FROM
gaopinzi
WHERE
LENGTH(hezi) = 3
AND (del IS NULL OR del = 0)
AND lang = 'chinese'
AND hezi = '针'
AND atian = 'jenjs'
ORDER BY
gudin DESC,
ord
LIMIT 1
------删除其他记录.
update gaopinzi set del=1 where
LENGTH(hezi) = 3
AND (del IS NULL OR del = 0)
AND lang = 'chinese'
AND hezi = '针'
AND atian = 'jenjs'
and id!=@top1
select * from gaopinzi
where lang='chinese' and HEZI='一' and atian='y'
and ( del is null or del=0)
and gudin=0 and id!=3192
=============
update gaopinzi set del=1 ,dely='test' where id=7106 and atian='cy'
update gaopinzi set del=1 ,dely='test' where id=7106 and atian='cy'
select * from gaopinzi where id=7106
select * from tmp
select hezi,atian from gaopinzi where lang='chinese' and (del is null or del=0) and LENGTH(hezi)=3
and ord=99 order by hezi
select * from gaopinzi where lang='chinese' and (del is null or del=0) and LENGTH(hezi)=3 and ord=99
order by hezi
select havgudin('针','jen')
select havgudin('一','y')
paip.输入法编程---带ord gudin去重复-的更多相关文章
- paip.输入法编程----删除双字词简拼
paip.输入法编程----删除双字词简拼 作者Attilax , EMAIL:1466519819@qq.com 来源:attilax的专栏 地址:http://blog.csdn.net/at ...
- paip.输入法编程---增加码表类型
paip.输入法编程---增加码表类型 作者Attilax , EMAIL:1466519819@qq.com 来源:attilax的专栏 地址:http://blog.csdn.net/attil ...
- paip输入法编程之生活用高频字,以及汉字分级
paip输入法编程之生活用高频字 作者Attilax , EMAIL:1466519819@qq.com 来源:attilax的专栏 地址:http://blog.csdn.net/attilax ...
- paip.输入法编程----一级汉字1000个
paip.输入法编程----一级汉字1000个.txt 作者Attilax , EMAIL:1466519819@qq.com 来源:attilax的专栏 地址:http://blog.csdn. ...
- paip.输入法编程---输入法ATIaN历史记录 c823
paip.输入法编程---输入法ATIaN历史记录 c823 作者Attilax , EMAIL:1466519819@qq.com 来源:attilax的专栏 地址:http://blog.csd ...
- paip.输入法编程--英文ati化By音标原理与中文atiEn处理流程 python 代码为例
paip.输入法编程--英文ati化By音标原理与中文atiEn处理流程 python 代码为例 #---目标 1. en vs enPHati 2.en vs enPhAtiSmp 3.cn vs ...
- paip.输入法编程---词库多意义条目分割 python实现.
paip.输入法编程---词库多意义条目分割 python实现. ==========子标题 python mysql 数据库操作 多字符分隔,字符串分割 字符列表循环 作者 老哇的爪子 Attil ...
- paip.输入法编程---词频顺序order by py
paip.输入法编程---词频顺序order by py 作者Attilax , EMAIL:1466519819@qq.com 来源:attilax的专栏 地址:http://blog.csdn ...
- paip.输入法编程---智能动态上屏码儿长调整--.txt
paip.输入法编程---智能动态上屏码儿长调整--.txt 作者Attilax , EMAIL:1466519819@qq.com 来源:attilax的专栏 地址:http://blog.csd ...
随机推荐
- linux vim 个性化设置(.vimrc)
set sw=4 set ts=4 set et set smarttab set smartindent set lbr set fo+=mB set sm set ...
- Coding Your Life
前几天看到篇文章,写的是科技让人变得陌生,balabala,总的说来就科技让邻居是男是女不知道了,朋友见面少了之类的.其实我觉得,也不能全怪科技发展的太快,而是人心都飘到网路上了,像我这一辈已经老去的 ...
- Java基础知识强化24:Java中异常
1.什么是异常 ? Java程序运行中,常常会遇到非正常的现象,这种情况称为运行错误.根据性质可以分为错误和异常.Java程序中(无论谁写的代码),所有抛出(throw)的异常都必须从Th ...
- Creating LVM Logical Volumes
LVM-Logical Volume Manager逻辑卷管理的一些基本概念: 用途: 在零停机前提下可以自如对文件系统的大小进行调整,可以方便实现文件系统跨越不同磁盘和分区.当系统添加了新的磁盘,通 ...
- jQuery幻灯插件:Nivo Slider
使用步骤 1.引入css文件 default.css 设置展示插件所需的样式,像控制导航键,导航按钮样式,当然你可以自己写个样式 nivo-slider控制图片样式,插件所需的CSS文件 <li ...
- JAVA File转Byte[]
/** * 获得指定文件的byte数组 */ public static byte[] getBytes(String filePath){ byte[] buffer = null; try { F ...
- 使用__doPostBack函数来达到使用客户端的控件来调用服务器端的函数的--小结
类比LinkButton按钮 LinkButton前台生成代码: JS代码: //<![CDATA[ var theForm = document.forms['form1']; if (!th ...
- LayoutInflater.inflate() 参数研究
参考连接:http://blog.csdn.net/lovexieyuan520/article/details/9036673 http://www.2cto.com/kf/201407/31305 ...
- pt-query-digest 安装及使用
打个草稿 介绍:pt-query-digest 可用于mysql的慢查询的日志分析,分析统计出每种慢查询的基本信息,如响应时间.最大执行时间.最小执行时间.执行时间的中位数等.(当然不只是这个功能) ...
- expected function body after function declarator
我出现这个错误是在pch中添加了一个a.h文件 然后在其他文件的b.h文件中就出现这个错误.. 后来排查出原因是: 在pch中, 这个a.h文件在b.h文件之后, 所以在b.h中使用的时候就会报错