search
HomeDatabaseMysql Tutorialsqlserver利用存储过程去除重复行的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 @@error0
begin
rollback tran --出错则回滚
end
else
begin --否则提前事务
commit tran
end

我的数据是这样的:因为item_uid是标识列,item_number有重复的,

我想过滤成这样:

顺带说几个在编程的时候遇到的小问题

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.

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

(第二个回答用 ' sql '进行连接)

(用case end 也行)

4. select into 和 insert into select 两种复制文句 (这里感谢)

  1.

语句形式为:

  2.

语句形式为:

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 --返回上一行代码受影响的行数

作者:

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Oracle存储过程实现批量更新的步骤与注意事项Oracle存储过程实现批量更新的步骤与注意事项Mar 08, 2024 pm 04:12 PM

标题:Oracle存储过程实现批量更新的步骤与注意事项在Oracle数据库中,存储过程是一组为了提高数据库性能、重用代码、增强安全性的SQL语句集合,通过存储过程可以实现批量更新数据的操作。本文将介绍如何使用Oracle存储过程实现批量更新,并提供具体的代码示例。步骤一:创建存储过程首先,我们需要创建一个存储过程,用来实现批量更新的操作。以下是创建存储过程的

Oracle存储过程:判断表是否存在的实现方法Oracle存储过程:判断表是否存在的实现方法Mar 08, 2024 pm 09:18 PM

Oracle数据库中存储过程是一种特定类型的存储过程,用于在数据库中执行一系列的SQL语句和数据操作。在实际的数据库开发工作中,有时候我们需要判断某个表是否存在于数据库中,这样可以在存储过程中做一些判断和逻辑处理。下面我们将介绍如何在Oracle数据库中实现判断表是否存在的方法,并提供具体的代码示例。首先,我们可以利用系统表user_tables或all_t

MySQL怎么删除存储过程MySQL怎么删除存储过程Sep 05, 2023 am 10:25 AM

MySQL删除存储过程的方法有使用DROP PROCEDURE语句、使用MySQL Workbench和使用命令行工具等。详细介绍:1、使用DROP PROCEDURE语句,其步骤为先打开MySQL客户端或使用任何支持MySQL的工具,再连接到您的MySQL数据库,最后执行以下SQL语句来删除存储过程;2、使用MySQL Workbench删除存储过程等等。

Golang存储过程的实现原理与应用Golang存储过程的实现原理与应用Feb 22, 2024 pm 04:57 PM

Golang存储过程的实现原理与应用存储过程是一种在关系数据库中存储并能被应用程序调用的预编译程序,可以有效地减少网络传输数据的开销,提高数据库的执行效率。虽然Golang并不直接支持存储过程,但是可以通过使用SQL语句来模拟实现存储过程的功能。本文将介绍Golang中实现存储过程的原理和应用,并提供具体的代码示例。一、Golang存储过程的实现原理在Gol

Oracle存储过程与函数详细对比及优势分析Oracle存储过程与函数详细对比及优势分析Mar 03, 2024 am 10:24 AM

标题:Oracle存储过程与函数详细对比及优势分析在Oracle数据库中,存储过程和函数是两种重要的数据库对象,它们都可以用来封装一系列的SQL语句和逻辑,提高数据操作的效率和复用性。本文将详细对比Oracle存储过程和函数的特点,以及它们各自的优势所在,并提供具体的代码示例。存储过程存储过程是一组预先编写好并存储在数据库中的SQL语句和PL/SQL代码逻辑

Oracle存储过程批量更新的性能优化策略Oracle存储过程批量更新的性能优化策略Mar 08, 2024 pm 09:36 PM

Oracle存储过程批量更新的性能优化策略在Oracle数据库中,存储过程是一种用来处理数据逻辑或执行特定任务的数据库对象,可以提供一定的性能优化策略,特别是在批量更新数据时。批量更新数据通常会涉及大量的行级操作,为了提高性能和效率,我们可以采取一些策略和技巧来优化存储过程的性能。下面将介绍一些Oracle存储过程批量更新的性能优化策略,并提供具体的代码示例

如何使用Golang编写高效的存储过程如何使用Golang编写高效的存储过程Mar 22, 2023 pm 02:24 PM

Golang是一门强大的编程语言,它能够轻松地实现存储过程。在本文中,我们将介绍如何使用Golang编写高效的存储过程,以及在项目中使用它们的好处。

编写易维护的Golang存储过程编写易维护的Golang存储过程Feb 24, 2024 pm 08:27 PM

如何在Golang中编写可维护的存储过程在Golang中,想要编写可维护的存储过程,首先需要了解存储过程的概念以及如何在Golang中实现。存储过程是一种存储在数据库中的包含一系列SQL语句的重复使用的代码块。通过存储过程,可以简化代码、提高性能并实现业务逻辑的封装。本文将介绍如何在Golang中编写可维护的存储过程,并提供具体的代码示例。1.连接数据库首

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.