Sometnig
  Home FAQ Contact Sign in
 
Advanced search
MATCHING GROUPS



more...
POPULAR GROUPS

more...

found 4 articles for 0.302 sec
On 10 ruj, 13:05, karma <dorjeta...@googlemail.com> wrote: > On 10 Sep, 11:23, explorer <skon...@gmail.com> wrote: > > > > > > > Hello, I have problem with combine 2 tables, let me explain > > > one table repeseent exam terms > > > studentId | course Id | course name | exam day | > > > second table is exam marks > > > studentId | course Id | pass day | mark | > > > problem is there     

Group: comp.softsys.sas · Group Profile · Search for Sometnig in comp.softsys.sas
Author: explorer
Date: Sep 11, 2008 05:28

Would studentId and courseId not have the same values in the 2 tables? Why would something like this not work? Proc SQL; create table all as select * from table1 a, table2 b where a.studentId=b.studentId and a.courseId=b.courseId; quit; run; Unless I've misunderstood you the above should give a table with all student results for all courses for which there were any results
Show full article (2.87Kb) · Show article thread
On 10 Sep, 11:23, explorer <skon...@gmail.com> wrote: > Hello, I have problem with combine 2 tables, let me explain > > one table repeseent exam terms > > studentId | course Id | course name | exam day | > > second table is exam marks > > studentId | course Id | pass day | mark | > > problem is there is no unique value to combine data. What i used is > pure SQL and LEFT JOIN where > i     

Group: comp.softsys.sas · Group Profile · Search for Sometnig in comp.softsys.sas
Author: "Lane, Jim"
Date: Sep 10, 2008 04:31

Hello, I have problem with combine 2 tables, let me explain one table repeseent exam terms studentId | course Id | course name | exam day | second table is exam marks studentId | course Id | pass day | mark | problem is there is no unique value to combine data. What i used is pure SQL and LEFT JOIN where i put sometnig like this SELECT field1, field2, field3 FROM first_table LEFT
Show full article (2.16Kb)
    

Group: comp.softsys.sas · Group Profile · Search for Sometnig in comp.softsys.sas
Author: karma
Date: Sep 10, 2008 04:05

Show full article (2.12Kb) · Show article thread
    

Group: comp.softsys.sas · Group Profile · Search for Sometnig in comp.softsys.sas
Author: explorer
Date: Sep 10, 2008 03:23

Show full article (0.91Kb)