sqlserver利用存储过程去除重复行的sql语句

时间:2024-01-20 06:28:54 

还是先上代码吧 ,可以先看 SQL语句去掉重复记录,获取重复记录


ALTER procedure [dbo].[PROC_ITEMMASTER_GETUNIQUE] @PAGEINDEX INT,@uid int,@itemnumber varchar(50)
AS
begin tran --开始事务
drop table [ItemMaster].[dbo].[testim] --删除表
--把不重复记录转存到testim中
select * into [ItemMaster].[dbo].[testim] from [ItemMaster].[dbo].[dat_item_master] where item_uid in(select min(item_uid) as item_uid from [ItemMaster].[dbo].[dat_item_master] group by item_number) and status=0
select top 10 * from [ItemMaster].[dbo].[testim] where item_uid not in (select top (10*(@PAGEINDEX-1)) item_uid from [ItemMaster].[dbo].[testim])
and owneruid=@uid and item_number like @itemnumber+'%'

--判断是否出错
if @@error<>0
begin
rollback tran --出错则回滚
end
else
begin --否则提前事务
commit tran
end


我的数据是这样的:因为item_uid是标识列,item_number有重复的,
sqlserver利用存储过程去除重复行的sql语句
我想过滤成这样:
sqlserver利用存储过程去除重复行的sql语句
顺带说几个在编程的时候遇到的小问题

1.程序 出现 Could not find stored procedure 找不到这个存储过程

因为我的程序数据库有四个,而默认连接是A,但实际要执行B库里的存储过程,导致出错,

解决办法1:可在A里面建个一样的存储过程2:在执行连接的时候,替换下数据库就行了

2. asp.net/C# 将存储过程中返回的数据集,填充到dataset/datatable


SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["SolutionSQLServer"].ToString());
SqlCommand cmd = new SqlCommand("Test",conn);
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.Add("@MaxId", SqlDbType.Int).Value = 12000;

SqlDataAdapter sda = new SqlDataAdapter(cmd);
DataTable dt = new DataTable();
sda.Fill(dt);



在这感谢 http://www.cnblogs.com/liujuncm5/archive/2009/08/31/1557569.html

3.在存储过程里面,写SQL语句不能动态不加order by 功能

比如


--·@new_orderby 是传入参数,不能这样写
select top (10*(2-1)) item_uid from testim order by @new_orderby

--执行这个的时候,SQL会出现 The SELECT item identified by the ORDER BY number 1 contains a variable as part
of the expression identifying a column position. Variables are only allowed when
ordering by an expression referencing a column name.


不过我找到解决办法,不过很麻烦,

http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=9328   (第二个回答用 ' sql '进行连接)

http://databases.aspfaq.com/database/how-do-i-use-a-variable-in-an-order-by-clause.html  (用case end 也行)

4. select into 和 insert into select 两种复制文句  (这里感谢http://www.cnblogs.com/freshman0216/archive/2008/08/15/1268316.html)

1.INSERT INTO SELECT语句

      语句形式为:Insert into Table2(field1,field2,...) select value1,value2,... from Table1

       要求目标表Table2必须存在,由于目标表Table2已经存在,所以我们除了插入源表Table1的字段外,还可以插入常量。

 2.SELECT INTO FROM语句

      语句形式为:SELECT vale1, value2 into Table2 from Table1

       要求目标表Table2不存在,因为在插入时会自动创建表Table2,并将Table1中指定字段数据复制到Table2中。

5.顺便复习下常用的SQL方法语句


declare @name varchar(200) --声明变量
set @name='abcd;def' --赋值
print 'exec len :'+Convert(varchar(10),Len(@name)) --convert(type,value)转换,Len(value)获取大小
print 'exec charindex:'+Convert(varchar(10),CharIndex('e',@name))--CharIndex(find,value) 在value中查找find的位置
print 'not replace:'+@name
print 'exec replace:'+Replace(@name,';','') --用replace替换
print 'exec substring:'+Substring(@name,0,3)--用substring截取
print @@RowCount --返回上一行代码受影响的行数


作者:chenhuzi

标签:存储过程,重复行
0
投稿

猜你喜欢

  • 如何给Python代码进行加密

    2021-08-24 16:24:30
  • Python selenium模拟手动操作实现无人值守刷积分功能

    2021-07-30 23:54:08
  • 在SQL Server计算机上运行病毒扫描软件

    2009-01-19 14:38:00
  • Go语言入门exec的基本使用示例

    2024-04-25 13:16:33
  • python常见的占位符总结及用法

    2023-10-11 10:39:58
  • JS中getElementsByClassName与classList兼容性问题解决方案分析

    2023-08-25 05:39:06
  • JS仿iGoogle自定义首页模块拖拽特效的方法

    2024-04-22 22:36:37
  • Python实现比较两个列表(list)范围

    2022-07-20 18:08:04
  • 用VB编写ActiveX DLL实现ASP编程

    2008-10-21 21:28:00
  • 关于TypeScript模块导入的那些事

    2024-06-07 15:57:46
  • Python抓取今日头条街拍图片数据

    2021-11-03 12:30:57
  • vue使用svg文件补充-svg放大缩小操作(使用d3.js)

    2023-06-30 16:23:31
  • Python爬虫获取基金净值信息详情

    2022-04-23 07:53:42
  • python使用PyGame绘制图像并保存为图片文件的方法

    2023-05-13 16:17:03
  • python GUI库图形界面开发之PyQt5控件数据拖曳Drag与Drop详细使用方法与实例

    2022-04-19 04:22:39
  • python保存网页图片到本地的方法

    2021-05-20 16:15:04
  • 如何批量生成MySQL不重复手机号大表实例代码

    2024-01-23 13:41:02
  • 详解用node-images 打造简易图片服务器

    2024-05-11 10:13:23
  • python使用xlrd模块读取xlsx文件中的ip方法

    2022-12-26 13:42:00
  • Python切片操作去除字符串首尾的空格

    2023-08-08 19:19:21
  • asp之家 网络编程 m.aspxhome.com