由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Database版 - 请教几个面试题
相关主题
请教一个SQL的问题问个简单的sql语句
SQL copy a table into a new table and add a new column高手请进
请教比较两个table,找出相同和不同的recordsany group function reutrn null if there is null value?
sql query helpsql 题目求助
菜鸟问题,急谁能帮我看看这个Insert语句要怎么改一下?
A rookie's query question请教一个query 优化的问题(filter keyword)
问个sql/ ssis的问题 谢谢!sort two same tables SQL but different results
一个oracle performance 的问题。请问sql 有条件性的select columns
相关话题的讨论汇总
话题: sql话题: query话题: warehouse话题: write话题: data
进入Database版参与讨论
1 (共1页)
i*******d
发帖数: 81
1
1. Write an SQL query that pivots a fixed set of rows into one column.
2. Assuming the Data Warehouse is only available for 1 SQL statement
describe an approach to look up the dimensional key values within the
Data Warehouse DB for records contained in a flat file.
3. Source table has 7 columns destination table has 5. Write a method
using SQL to find row level differences between the 5 columns shared
across the tables.
-------------------------
都是面试原题,为防止误导对题目暂不做评论。请注意的是这三题都是考的SQL query
writing,应该不能用procedure或者其他tool。第一二题都说了用an SQL query/ 1
SQL statement。
多谢各位指点!
T****U
发帖数: 3344
2
My answer to Q3
select * from
((select col1, col2, col3, col4, col5 from sevencol)
minus fivecol)
Union
(fivecol minus
(select col1, col2, col3, col4, col5 from sevencol))

query

【在 i*******d 的大作中提到】
: 1. Write an SQL query that pivots a fixed set of rows into one column.
: 2. Assuming the Data Warehouse is only available for 1 SQL statement
: describe an approach to look up the dimensional key values within the
: Data Warehouse DB for records contained in a flat file.
: 3. Source table has 7 columns destination table has 5. Write a method
: using SQL to find row level differences between the 5 columns shared
: across the tables.
: -------------------------
: 都是面试原题,为防止误导对题目暂不做评论。请注意的是这三题都是考的SQL query
: writing,应该不能用procedure或者其他tool。第一二题都说了用an SQL query/ 1

B*****g
发帖数: 34098
3
数据量大了你这个够呛

【在 T****U 的大作中提到】
: My answer to Q3
: select * from
: ((select col1, col2, col3, col4, col5 from sevencol)
: minus fivecol)
: Union
: (fivecol minus
: (select col1, col2, col3, col4, col5 from sevencol))
:
: query

T****U
发帖数: 3344
4
那mm帮我优化一下

【在 B*****g 的大作中提到】
: 数据量大了你这个够呛
B*****g
发帖数: 34098
5
我还没看懂题呢

【在 T****U 的大作中提到】
: 那mm帮我优化一下
T****U
发帖数: 3344
6
咣当
其实如果是OLAP,加composite index,速度应该可以把

【在 B*****g 的大作中提到】
: 我还没看懂题呢
i*******d
发帖数: 81
7
和这个结果一样吧?
select ... from sevencol UNION select * from fivecol
MINUS
select ... from sevencol INTERSECT select * from fivecol
找出两个table中非相同的行。
row level difference 是这个意思么?

【在 T****U 的大作中提到】
: My answer to Q3
: select * from
: ((select col1, col2, col3, col4, col5 from sevencol)
: minus fivecol)
: Union
: (fivecol minus
: (select col1, col2, col3, col4, col5 from sevencol))
:
: query

T****U
发帖数: 3344
8
en, 一样的
我猜就是这个意思, 不过也不肯定.
我觉得这几题问得都有点模糊, 题目出的不规范

【在 i*******d 的大作中提到】
: 和这个结果一样吧?
: select ... from sevencol UNION select * from fivecol
: MINUS
: select ... from sevencol INTERSECT select * from fivecol
: 找出两个table中非相同的行。
: row level difference 是这个意思么?

1 (共1页)
进入Database版参与讨论
相关主题
请问sql 有条件性的select columns菜鸟问题,急
如何除去duplicate rows?A rookie's query question
请教一个sql问题问个sql/ ssis的问题 谢谢!
better solution for cross table query in sql?一个oracle performance 的问题。
请教一个SQL的问题问个简单的sql语句
SQL copy a table into a new table and add a new column高手请进
请教比较两个table,找出相同和不同的recordsany group function reutrn null if there is null value?
sql query helpsql 题目求助
相关话题的讨论汇总
话题: sql话题: query话题: warehouse话题: write话题: data