Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Create memo field in SQL on the fly
Message
 
À
06/10/2003 03:27:55
Arnold Lee
K&A International Co.,Ltd
Hong Kong, Hong Kong
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Divers
Thread ID:
00835267
Message ID:
00835281
Vues:
18
Arnold,

You could try something like :


CREATE CURSOR Dummy ( MyMemo m )
APPEND BLANK

SELECT MyTable.*, Dummy.MyMemo;
FROM MyTable;
LEFT OUTER JOIN Dummy ON 1=1;
INTO CURSOR MyCursor


Cheers,

Zoran

>Hi Everybody
>
>Sometime I need to create an additional field in Select - SQL like this :
>
>Select FieldA,space(2) as FieldB from table readwrite
>
>where FieldB was created on the fly to put in some data manually as the cursor is readwriteable.
>Ok. My question is : how do I create a Memo field ???
>
>Thanks for your idea!
>
>Arnold
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform