由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Quant版 - keep group of values of SQL procedure in one table (转载)
相关主题
SQL find distinct values in large table (转载)sort two same tables SQL but different results (转载)
SQL select one value column for each distinct value another (转载)SQL combine two columns from two different tables no shared (转载)
SQL fast search in a 10 million records table (转载)create table on SQL server from python pyodbc
an interview question(finance)SQL multiply all values of a column in table
SQL run a stored procedure by fetching from a cursor row by (转载)[合集] phone interview brainteaser
SQL debug step into a store procedure from another one[合集] one interview question about coins
run SQL stored procedure from python (转载)请问cv中c++的水平应该怎么写
compare two large tables SQL (转载)来一道题 (转载)
相关话题的讨论汇总
话题: procedure话题: sql话题: table话题: values话题: keep
进入Quant版参与讨论
1 (共1页)
l******9
发帖数: 579
1
【 以下文字转载自 Database 讨论区 】
发信人: light009 (light009), 信区: Database
标 题: keep group of values of SQL procedure in one table
发信站: BBS 未名空间站 (Sat May 24 09:48:08 2014, 美东)
I need to print out a group of values from a procedure on SQL server 2008.
If I use select , it generated a distinct table into the result part of SQL
server 2008 managemetn studio every time the procedure is called.
i need to call the procedure in a loop. I want to print the values into one
table.
Thx!
while
begin
my_procedure()
end
my_procedure()
# do something
select value1, value2, value3
i need to keep the
value1, value2, value3
in one single table after the loop is done.
Currently, everytime my_procedure() is called, a new table is created in SQL
server MS.
I want to keep all of them in one single table.
1 (共1页)
进入Quant版参与讨论
相关主题
来一道题 (转载)SQL run a stored procedure by fetching from a cursor row by (转载)
Ordering a sequence (2) (转载)SQL debug step into a store procedure from another one
Interview question help --set partionrun SQL stored procedure from python (转载)
what distribution is this?compare two large tables SQL (转载)
SQL find distinct values in large table (转载)sort two same tables SQL but different results (转载)
SQL select one value column for each distinct value another (转载)SQL combine two columns from two different tables no shared (转载)
SQL fast search in a 10 million records table (转载)create table on SQL server from python pyodbc
an interview question(finance)SQL multiply all values of a column in table
相关话题的讨论汇总
话题: procedure话题: sql话题: table话题: values话题: keep