这是个SQL语句,大致意思应该是从orders中选出满足条件orders.custno=customer.custno的子集添加到customer中,应该是类似这样的:
例:customer含字段custno,name,
   有两条记录:        1    a
                      2    b
   orders含字段 custno,orderno
   有四条记录        1 1
                    1 2
                    2 1
                    2 2
则该语句执行结果为
            customer.custno,name,orderno
                          1    a 1
                          1    a 2
                          2    b 1
                          2    b 2  
                        我没用过的,不懂,瞎扯,呵呵