Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Combine 2 tables - better way?
Message
From
24/02/2004 13:59:48
 
 
To
24/02/2004 13:19:04
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
00880102
Message ID:
00880408
Views:
36
>i don't know. should that be entered in the bug list?

>any takes from anyone?

>is it maybe already fixed in a later version? (i work with Vfp6 Service Pack 5)

I run this without problems into VFP6/7/8
CD SYS(2023)
MD dir1
MD dir2
CREATE TABLE dir1\table1 FREE (F1 I , F2 C(1))
INSERT INTO (ALIAS()) VALUES (1,'a')
INSERT INTO (ALIAS()) VALUES (2,'b')
USE
CREATE TABLE dir2\table1 FREE (F1 I , F2 C(1))
INSERT INTO (ALIAS()) VALUES (1,'A')
INSERT INTO (ALIAS()) VALUES (2,'B')
USE
SELECT f2 FROM dir1\table1.dbf tab1 where F1=1;
union;
SELECT f2 FROM dir2\table1.dbf tab2 where F1=1
CLOSE TABLES ALL
DELETE FILE dir1\table1.dbf
DELETE FILE dir2\table1.dbf
RMDIR dir1
RMDIR dir2
you have a repro bug code ?

Fabio
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform