Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to use SQL Select UNION with TOP
Message
 
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
01303352
Message ID:
01303384
Views:
11
>>Check this thread Re: Select 3 records Thread #1301530
>>
>>I'm thinking there may be a problem with using ORDER BY clause in 2 different parts of UNION.
>
>Thank you for pointing to the other thread. The TOP requires to have ORDER BY but maybe I only need it in the second SQL Select of the Union. I will try it.

select PK from table inner join (select TOP 50 * from MyTable where PK_VAL > nVar Order by PK_VAL) TopSQL on ... ;
UNION ALL ;
select TOP 50 * from MyTable where PK_VAL < nVar Order by PK_VAL DESC

Would this idea work too?
If it's not broken, fix it until it is.


My Blog
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform