Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Another weird issue with ANSI SQL
Message
 
 
To
08/02/2003 00:16:18
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
00750934
Message ID:
00750944
Views:
21
>>VFP8 doesn't allow memo or general field in UNION. Would UNION ALL work for you in this case? It doesn't have such restriction.
>
>When I assumed that, I change it to use the same approach as the GROUP BY. So, I only extract the IDs first and then do another SQL to get the rest.

That would work too. I guess, I wasn't clear in my previous message. You could change UNION to UNION ALL and it would work. UNION should be only used in the queries that could produce duplicate records, to eliminate those duplicates. UNION ALL is also faster because it doesn't do anything with result set. UNION, on other hand, does DISTINCT on the result set. That's where VFP generates an error on memo fields because it doesn't compare them for performance reason.
--sb--
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform