Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
SQL to get the alphabetical next
Message
From
30/03/2003 11:59:39
 
 
To
30/03/2003 08:51:36
Km Kwun
Eastop Consultants Limited
Nt, Hong Kong
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00771820
Message ID:
00771830
Views:
22
You can fetch all customers with the same name and navigate in the resulting dataset:
SELECT CustID, LastName, FirstName
   FROM Customers
   WHERE LastName = <lastname> and FirstName = <firstname>
   ORDER BY LastName, FirstName
HTH

>The customer table of my SQL server database contains the following 3 column. There may be more than one customer having exactly the same last and first names while CustID is unique:
>CustID, LastName, FirstName
>
>Data currently showing in my "Customer Data" form are
>CustID=671
>LastName='Barnes'
>FirstName='John'
>
>What is the best SQL command to get the CustID of next (alphabetic order) customer?
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform