Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2000 Forums
 SQL Server Development (2000)
 second search within first search result using sp

Author  Topic 

Sun Foster
Aged Yak Warrior

515 Posts

Posted - 2006-01-31 : 10:25:10
Can someone teach me how to make second search within first search result using sore procedure?

nr
SQLTeam MVY

12543 Posts

Posted - 2006-01-31 : 11:07:40
Derived table?

select ...
from (select .... from ... where ...) a
where ...

temp table?

select
into #a
where ....

select *
from #a
where ...




==========================================
Cursors are useful if you don't know sql.
DTS can be used in a similar way.
Beer is not cold and it isn't fizzy.
Go to Top of Page
   

- Advertisement -