Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Problem referencing a field in a query.
Message
 
 
À
11/04/2003 13:02:07
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00776657
Message ID:
00776669
Vues:
14
>Given:
>
>Select deposit_no,dep_date from deposits into table sys(2105)
>deposit_ext = alias()
>
>
>How can I reference a field in this table in a join with another table?
>
>deposit_ext.deposit_no does not work as it say deposit_ext is not an object
>
>I have tried other combination of (deposit_ext.deposit_no) etc and evidently not found the right combination.
>
>Any help would be appreciated.

Gaylen,

You can assign table alias in a query.
 SELECT * ;
  FROM  ( DBF(deposit_ext)) dext ;
    JOIN othertable ot ON dext.deposit_no = ot.deposit_no ;
...
--sb--
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform