Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
View design
Message
From
22/01/2011 08:14:08
 
General information
Forum:
Microsoft SQL Server
Category:
SQL syntax
Title:
Environment versions
SQL Server:
SQL Server 2000
Miscellaneous
Thread ID:
01496981
Message ID:
01496993
Views:
48
>>Hi,
>>Here's a very simplified version of a view (named History):
SELECT Id, Date,
>>FROM  dbo.SCHeaders
>>UNION
>>Select Id, Date
>>FROM dbo.Allocations
>>UNION
>>SELECT Id, Date
>>FROM dbo.Detail
The view will always be used with a specific ID e.g :
>>SELECT * FROM History WHERE ID='Fred'
>>In this scenario there will always be only one record retrieved from the SCHeaders table.
>>I need to exclude any records with a date that is earlier than that of the SCHeaders record from the result.
>>FWIW this only need apply to the Detail table - there will be no such records in the Allocations table.
>>
>>A Sproc could be used if it is preferable....
>>TIA
>
>Do an inner join and include the date condition in the Where clause?

Hi,
After I bit of head scratching I gave up on this and modified the Linq that queried the view so that it dropped the surplus rows - so I no longer need to achieve this directly in SQL. That said, I'm still curious as to what would have been the best SQL solution. Can you expand a bit on what you are suggesting ?
Best,
Viv
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform