有些朋友可能需要在一些工作表添加专业的条形码,这时候可以使用Excel的Microsoft Barcode Control 9.0控件,就可以非常方便地根据自己的需要插入条形码,具体操作方法如下: 执行视图→工具栏→控件工具箱命令,在弹出的控件工具栏中单击其它控件选项,在出现的命令选项列表中选择Microsoft Barcode Control 9.0,这样就可以在工作表中插入一个条形码,若要修改条形码下端的数字,可右击插入的条形...[ 查看全文 ]
采用的是下面的方法可删除,假设重复的是test数据库中的title字段 代码如下: create table bak as (select * from test group by title having count(*)=1); insert into bak (select * from test group by title having count(*)1);  ...[ 查看全文 ]
方法一 declare @max integer,@id integer declare cur_rows cursor local for select 主字段,count(*) from 表名 group by 主字段 having count(*) 1 open cur_rows fetch cur_rows into @id,@max while @@fetch_status=0 begin select @max = @max -1 set rowcount @max delete from 表名 where 主字段 = @id fetch cur_rows into @id,@max end close cur_rows set rowcount 0 方法二 有两个意...[ 查看全文 ]