Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
List Sort Design Question
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
01131472
Message ID:
01131570
Vues:
20
Would derived table solve your problem ?
SELECT * FROM ( ;
  select e.id,;
      e.caption,;
      e.internal_id,;
      l.Caption as location,;
      e.cur_meter,;
      e.model,;
      e.serial_no;
    from equipment e;
    left outer join locations l on l.id = e.location_id;
    )
order by &cSortOrder;
into cursor temp1
>VFP 9, SP1
>
>>You will only need alias if the same field name is presented in both tables. What VFP version are you using?
--sb--
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform