Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Select RECNO() puzzler
Message
From
13/08/1998 22:22:50
Charlie Schreiner
Myers and Stauffer Consulting
Topeka, Kansas, United States
 
 
To
13/08/1998 16:48:29
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00126709
Message ID:
00126777
Views:
20
>
> SELECT RECNO() FROM customer, order ;
> WHERE customer.custid = "001" .AND. ;
> order.orderid < "999"

You can use local aliases.
SELECT RECNO("Cust") AS CustRecNO, RECNO("Ord") AS OrdRecNo ;
FROM customer Cust, order Ord;
WHERE Cust.custid = "001" AND ;
Ord.orderid < "999"
Does that work for you?
Charlie
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform