Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How can I do this with one view?
Message
From
07/05/2001 07:27:56
 
 
To
All
General information
Forum:
Microsoft SQL Server
Category:
SQL syntax
Title:
How can I do this with one view?
Miscellaneous
Thread ID:
00504115
Message ID:
00504115
Views:
59
I would like to accomplish the following without having to construct the MaxDetailTS view:

View MaxDetailTS:
SELECT Member_Id, MAX(TS) AS Ts
FROM dbo.SmtDetail
GROUP BY Member_Id

View DetailView:
SELECT SmtDetail.*
FROM dbo.SmtDetail INNER JOIN
dbo.MaxDetailTs ON
dbo.SmtDetail.Member_Id = dbo.MaxDetailTs.Member_Id AND
dbo.SmtDetail.TS = dbo.MaxDetailTs.Ts

Is there a more efficient and/or neater way to accomplish this?

TIA
Peter Pirker


Whosoever shall not fall by the sword or by famine, shall fall by pestilence, so why bother shaving?

(Woody Allen)
Next
Reply
Map
View

Click here to load this message in the networking platform