
May 9th, 2012, 12:41 PM
|
|
Registered User
|
|
Join Date: May 2012
Posts: 2
Time spent in forums: 14 m 35 sec
Reputation Power: 0
|
|
|
Complicated join
I'm trying to write a view in SQL2000 (it's my client's environment, and they're not ready to upgrade).
I have a table called "Customers" and another called "CreditCards." One customer may have many credit cards.
The "CreditCards" table has a varchar field "ExpDate" and the values in this column are all four digits, mmyy.
I am trying to figure out how to write a view that returns one line per customer, showing the credit card details with the latest expiration date.
For example, Customer John Doe has two cards. One expires 0313 and the other expires 0514. I want my view to show one line for John Doe, with the details for the 0514 card.
Can anyone think of a good way to do this?
Thanks!
|