由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Database版 - 问个sql/ ssis的问题 谢谢!
相关主题
sql query help请教一个query 优化的问题(filter keyword)
菜鸟问题,急请教一个SQL的问题
A rookie's query questionsort two same tables SQL but different results
一个oracle performance 的问题。SQL copy a table into a new table and add a new column
高手请进请问sql 有条件性的select columns
any group function reutrn null if there is null value?如何除去duplicate rows?
sql 题目求助请教一个sql问题
谁能帮我看看这个Insert语句要怎么改一下?问个简单的sql语句
相关话题的讨论汇总
话题: tbl1话题: colc话题: col2话题: temp话题: col1
进入Database版参与讨论
1 (共1页)
a*********u
发帖数: 1463
1
有两个sql server table
table1 (col1, col2, col3 ... col9)
table2 (cola, colb, colc)
目的是弄一个 excel table3
包含col1, col2, col3, col5, col6, colc
colc的值是当tbl1.col1=tbl2.cola and tbl1.col2 = tbl2.colb
我现在的想法是
select col1,col2,col3, col5, col6, 0 as colc from tbl1 into temp_tbl1
update temp_tbl1
set temp_tbl1.colc = tbl2.colc
from temp_tbl1
inner join tbl2
on (temp_tbl1.col1 = tbl2.cola and temp_tbl1.col2 = tbl2.colb)
然后再用ssis 把数据弄到excel里
请问还有什么简单易操作的方法吗
谢谢
B*****g
发帖数: 34098
2
SSIS source can be select statement

【在 a*********u 的大作中提到】
: 有两个sql server table
: table1 (col1, col2, col3 ... col9)
: table2 (cola, colb, colc)
: 目的是弄一个 excel table3
: 包含col1, col2, col3, col5, col6, colc
: colc的值是当tbl1.col1=tbl2.cola and tbl1.col2 = tbl2.colb
: 我现在的想法是
: select col1,col2,col3, col5, col6, 0 as colc from tbl1 into temp_tbl1
: update temp_tbl1
: set temp_tbl1.colc = tbl2.colc

h******l
发帖数: 422
3
你的意思是:
假设 tbl1:
col1 col2 col3 col4 col5 col6
1 (共1页)
进入Database版参与讨论
相关主题
问个简单的sql语句高手请进
请教几个面试题any group function reutrn null if there is null value?
mySQL 问题 (转载)sql 题目求助
sql 请教谁能帮我看看这个Insert语句要怎么改一下?
sql query help请教一个query 优化的问题(filter keyword)
菜鸟问题,急请教一个SQL的问题
A rookie's query questionsort two same tables SQL but different results
一个oracle performance 的问题。SQL copy a table into a new table and add a new column
相关话题的讨论汇总
话题: tbl1话题: colc话题: col2话题: temp话题: col1