search
HomeDatabaseMysql Tutorialmssql存储过程表名和字段名为变量的实现方法

mssql存储过程表名和字段名为变量的实现方法,需要的朋友可以参考下。

没有使用动态语句直接报错

错误的
代码如下:
alter proc testpapers
as
begin
declare @tems nvarchar(max),@zidaun nvarchar(max)
set @tems=select * from @tems order by @zidaun
exec(@tems)
end
exec testpapers

消息 156,级别 15,状态 1,过程 testpapers,第 1 行
关键字 'select' 附近有语法错误。
消息 1087,级别 15,状态 2,过程 testpapers,第 1 行
必须声明表变量 "@tems"。

首先要让表名或者字段为变量则要用到动态语句

错误的
代码如下:
alter proc testpapers
as
begin
declare @tems nvarchar(max),@zidaun nvarchar(max)
set @tems='select * from @tems order by @zidaun ';
exec(@tems)
end

exec testpapers

消息 1087,级别 15,状态 2,第 1 行
必须声明表变量 "@tems"。

将表名和字段名写到exec里边

正确的
代码如下:
alter proc testpapers
as
begin
declare @startRow nvarchar(max),@tems nvarchar(max),@zidaun nvarchar(max)
set @startRow='temp'
set @tems='select * from ';
set @zidaun='p_id';
exec(@tems+@startRow+' order by '+@zidaun)
end

exec testpapers
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编写高效的存储过程,以及在项目中使用它们的好处。

如何在MySQL中使用C#编写自定义存储过程和函数如何在MySQL中使用C#编写自定义存储过程和函数Sep 22, 2023 am 09:42 AM

如何在MySQL中使用C#编写自定义存储过程和函数引言:MySQL是一个广泛使用的开源数据库管理系统,而C#是一种常用的面向对象的编程语言。在开发过程中,我们经常需要使用数据库存储过程和函数来提高代码的复用性和性能。本文将介绍如何在MySQL数据库中使用C#编写自定义存储过程和函数,并提供具体的代码示例。一、存储过程存储过程是一组为执行特定任务的SQL语句集

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

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment