由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - sort two same tables SQL but different results (转载)
相关主题
SQL copy a table into a new table and add a new column (转载)如何在用SAS给多个data step 和proc step 做循环语句呢?
A R question如何在PROC SQL里面象SQL 一样设置index使join更快?
SQL combine two tables into one table and add a new column (转载)SQL check likeness between two large tables
[合集] 如何用SAS把几个colume的值连接在一起急需高人指点!!
[合集] 请教:SAS help问SAS code怎么写
如何将SAS DATA中的变量名改名(不知道原变量名的前提下)SAS新手问一个做很多次比较的问题
这个在excel里怎么实现一个sas问题
操作pair data加flag请问一个小问题,现在需要重复拷贝相同数据到同一文件内,如何把数据重复100遍写到文本文件。
相关话题的讨论汇总
话题: 81话题: col1话题: 3498话题: 2349话题: 6742
进入Statistics版参与讨论
1 (共1页)
l******9
发帖数: 579
1
【 以下文字转载自 Database 讨论区 】
发信人: light009 (light009), 信区: Database
标 题: sort two same tables SQL but different results
发信站: BBS 未名空间站 (Fri May 9 09:57:41 2014, 美东)
I am sorting two tables on SQL.
The two tables have the same column names and types and rows numbers.
I used order by to do sorting but the two tables are different in order.
Example,
SELECT *
FROM table1 AS t1
ORDER BY t1.col1 , t1.col2, t1.col3, t1.col4 ASC
SELECT *
FROM table2 AS t2
ORDER BY t2.col1 , t2.col2, t2.col3, t2.col4 ASC
Table1 is :
col1 col2 col3 col4
80 790 3498 18654.064361
81 589 3182 2138518.05404
80 518 6742 64613189.0485
81 649 2349 26163.054218
Table2 is :
col1 col2 col3 col4
81 589 3182 2138518.05404
80 518 6742 64613189.0485
80 790 3498 18654.064361
81 649 2349 26163.054218
The sorted results are :
Table1 is :
col1 col2 col3 col4
80 518 6742 64613189.0485
80 790 3498 18654.064361
81 589 3182 2138518.05404
81 649 2349 26163.054218
The sorted results are :
Table12 is :
col1 col2 col3 col4
81 589 3182 2138518.05404
81 649 2349 26163.054218
80 518 6742 64613189.0485
80 790 3498 18654.064361
Why they are different on col1 ?
Thanks
1 (共1页)
进入Statistics版参与讨论
相关主题
请问一个小问题,现在需要重复拷贝相同数据到同一文件内,如何把数据重复100遍写到文本文件。[合集] 请教:SAS help
给duplicate加flag如何将SAS DATA中的变量名改名(不知道原变量名的前提下)
问个merge的问题这个在excel里怎么实现
sas data set 求助操作pair data加flag
SQL copy a table into a new table and add a new column (转载)如何在用SAS给多个data step 和proc step 做循环语句呢?
A R question如何在PROC SQL里面象SQL 一样设置index使join更快?
SQL combine two tables into one table and add a new column (转载)SQL check likeness between two large tables
[合集] 如何用SAS把几个colume的值连接在一起急需高人指点!!
相关话题的讨论汇总
话题: 81话题: col1话题: 3498话题: 2349话题: 6742