代码搜索:重复学习

找到约 10,000 项符合「重复学习」的源代码

代码结果 10,000
www.eeworm.com/read/378183/9244977

dat vb_code22.dat

For...Next语句 以指定次数来重复执行一组语句。
www.eeworm.com/read/131795/14126167

dat vb_code22.dat

For...Next语句 以指定次数来重复执行一组语句。
www.eeworm.com/read/383145/8968410

cpp 删除重复元素.cpp

#include typedef struct{ int *elem; int length; int listsize; }sqlist; int List(sqlist &L)//分配内存 { L.elem=new int[20]; if(!L.elem) return 0; L.length=0; L.listsize=20;
www.eeworm.com/read/169320/9866829

sql 防止重复的示例.sql

--自己做编号,防止冲突的处理 --处理示例1(用主键/唯一键) --得到最新编号的函数 create function f_newid() returns char(7) --编号位数固定,用char的检索效率高于varchar as begin declare @re char(7) select @re=max(BHID) from 表 return(
www.eeworm.com/read/353803/10417392

txt 删除重复记录.txt

通常情况下,一个我们在做一个产品的时候,一开始可能由于设计考虑不周或者程序写的不够严谨,某个字段上的值产生重复了,但是又必须去掉,这个时候就稍微麻烦了一点,直接加一个 UNIQUE KEY 肯定是不行了,因为会报错。 现在,我们来采用一种变通的办法,不过可能会丢失一些数据 :) 在这里,我们设定一个表,其结构如下: mysql> desc `user`; +-------+- ...
www.eeworm.com/read/306719/13739616

txt 去掉重复的列名.txt

declare @t table(编号 varchar(6),名称 varchar(6),数量 int) insert @t select '001', 'AAA', 10 union all select '001', 'AAA', 3 union all select '001', 'AAA', 50 union all select '001', 'AAA',
www.eeworm.com/read/301164/13865081

sql 防止重复的示例.sql

--自己做编号,防止冲突的处理 --处理示例1(用主键/唯一键) --得到最新编号的函数 create function f_newid() returns char(7) --编号位数固定,用char的检索效率高于varchar as begin declare @re char(7) select @re=max(BHID) from 表 return(