Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to get SQL memo column
Message
From
19/11/1998 11:44:37
 
 
To
19/11/1998 11:37:56
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00159322
Message ID:
00159325
Views:
15
>This code exemplifies what I want to do:
>
>
create table test (c1 c(254))
>insert into test (c1) values (replicate('X', 254))
>
>select (testa.c1 + testb.c1) as MemoCol from test testa, test testb
>
>How can I make the column named MemoCol a memo field?

create table test (c1 c(254))
insert into test (c1) values (replicate('X', 254))
create cursor tmp (dummy M)
insert into tmp values("")
select dummy+c1 as memocol from test,tmp
Edward Pikman
Independent Consultant
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform