Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Adding memo field as calculated field
Message
 
 
To
27/07/2002 12:00:17
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
00683249
Message ID:
00683252
Views:
35
This message has been marked as the solution to the initial question of the thread.
>From this SQL:
>
>
>SELECT *,SPACE(100) AS Notes FROM Content INTO CURSOR Temp
>
>
>Is there a way to have the calculated field Notes to be a memo field?

Yes, you can create a cursor with memo field and add it to select.
CREATE CURSOR crsTemp (Notes M)
APPEND BLANK
SELECT * ;
  FROM Content, crsTemp ;
  INTO CURSOR Temp
--sb--
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform