データテーブルの接続

940 ワード

       : 1、   (    ):                     2、   :    (1)    (        ) (2)    (        ) (3)    (         ) 3、   (          ) select a.studentno, a.studentname, b.classname from students a, classes b where a.classid(+) = b.classid; STUDENTNO STUDENTNAM CLASSNAME ---------- ---------- ------------------------------ 1 A       2 B                     :  "(+)"              ,                    ,            。       ,                     ,                  。   : select a.studentno, a.studentname, b.classname from students a, classes b where a.classid = b.classid(+); STUDENTNO STUDENTNAM CLASSNAME ---------- ---------- ------------------------------ 1 A       2 B       3 C      ,                          ,             。 select a.studentno, a.studentname, b.classname from students a, classes b where a.classid = b.classid;             ,               ,                                                     !