Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
View design
Message
From
23/01/2011 10:28:45
 
 
General information
Forum:
Microsoft SQL Server
Category:
SQL syntax
Title:
Environment versions
SQL Server:
SQL Server 2000
Miscellaneous
Thread ID:
01496981
Message ID:
01497066
Views:
43
>>>>>>>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
>>>>
>>>>
>>>>
>>>>Viv,
>>>>
>>>>I don't have access to an sql server - so forgive me the foxpro syntax - you won't have any problem translating
>>>>
>>>>
>>>>select 	Id, ;
>>>>			Date ;
>>>>		from SCHeaders ;
>>>>		where	( Id = ?pId) ;
>>>>	union all ;
>>>>	select 	Id, ;
>>>>			Date ;
>>>>		from Allocations ;
>>>>		where	( Id = ?pId) ;
>>>>	union all ;
>>>>	select 	Id, ;
>>>>			Date ;
>>>>		from Detail ;
>>>>		where	( Id = ?pId) ;
>>>>			and	( date >= ( select Date from SCHeaders where 	( Id = ?pId) ) )
>>>>
Thanks! I sort of thought it would need to be a SP.
>>>Don't know what it is with me and SQL. Half the time I can't even write valid syntax - let alone come up with something that might give the right result :-{
>>
>>
>>
>>What Mike probably meant was something like this
>>
>>
>>select 	Id, ;
>>			Date ;
>>		from SCHeaders ;
>>		where	( Id = ?pId) ;
>>	union all ;
>>	select 	Id, ;
>>			Date ;
>>		from Allocations ;
>>		where	( Id = ?pId) ;
>>	union all ;
>>	select 	Detail.Id, ;
>>			Detail.Date ;
>>		from SCHeaders  ;
>>			join Detail on ( Detail.Id == SCHeaders.Id) ;
>>				and	( Detail.Date >= SCHeaders.Date ) ;
>>		where	( SCHeaders.Id = ?pId) ;
>>
>
>Which begs the question: which would be best? :-}


Honestly, I don't know.
But I think the first one will be faster since It doesn't have a join

Now, let me give you a little brain teaser

What is an elegant way to dispose an object IF it implements IDisposable.
You do not know whether the object implements IDisposable
public void SomeMethod(ISomeInterface theObject)
{
	// do something with theObject
	// and if theObject implements IDisposable
	// dispose it



}
Gregory
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform