如何把一个vector的数据传给存储过程

 我来答
fa...0@sina.com
2016-12-10 · TA获得超过173个赞
知道小有建树答主
回答量:273
采纳率:0%
帮助的人:253万
展开全部
   确切的说不行-SQL SERVER没有数组类型,ANSI SQL 92标准也不支持数组。但可用其它的方法来实现。
    1. You could simulate an array by passing one or more varchar(255) fields with comma-separated values and then use a WHILE loop with PATINDEX and SUBSTR to extract the values.
    1、你可以使用几个VARCHAR(255)字段来模拟数组,字段中用逗号分开各个数据,然后使用循环和PATINDEX和SUBSTR分开这些数据。
    2. The more usual way to do this would be to populate a temporary table with the values you need and then use the contents of that table from within the stored-procedure. Example of this below    2、通常这种方法需要为这些数据创建一个临时表,然后在存储过程使用表中的内容。如下例    create procedure mytest @MyParmTempTable varchar(30)  as  begin  -- @MyParmTempTable contains my parameter list...  这个变量是包含参数的表名    -- For simplicity use dynamic sql to copy into a normal temp table...
    create table #MyInternalList (
  list_item varchar( 2 ) not null  )    set nocount on    insert #MyInternalList
  select *
  from sysobjects
    create table #MyList (
  list_item varchar( 2 ) not null  )  insert #MyList values ( 'S' )
  insert #MyList values ( 'U' )
  insert #MyList values ( 'P' )    exec mytest "#MyList"    3. If all you wanted to do was use the array/list as input to an IN clause in a WHERE statement you could use :-    3、如果你想在IN子句里使用输入的数组参数可以这样做:    CREATE PROCEDURE sp_MyProcedure (@MyCommaDelimitedString
光点科技
2023-08-15 广告
通常情况下,我们会按照结构模型把系统产生的数据分为三种类型:结构化数据、半结构化数据和非结构化数据。结构化数据,即行数据,是存储在数据库里,可以用二维表结构来逻辑表达实现的数据。最常见的就是数字数据和文本数据,它们可以某种标准格式存在于文件... 点击进入详情页
本回答由光点科技提供
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式