Ask a Question related to ASP Database, Design and Development.
-
Gerald #1
SP with Select statement
Hi,
I'm trying to select fileds that are in the results of a SP.
So I have the table "tblItem"
itemID int Identity Key,
itemName varchar (100),
itemDate smalldatetime
I have a SP "p_getItemID"
which is lets say
SELECT TOP 10 itemID FROM tblItem
Now what I want to do is:
SELECT * FROM tblItem WHERE itemID IN (EXEC p_getItemID)
I want to select from the table but only the itemId's returned by the sp.
Can you do that?
Thanks
Gerald
Gerald Guest
-
Select-And-Update in one statement?
On my site I often do SELECT counter from counters where id = 10 UPDATE counter set counter = counter + 1 Can I somehow merge them into one... -
select statement woes
I hope some one can help me figure this out. I've got a search feature for images and users can enter up to 3 terms and I'm not getting the results... -
help with SELECT statement
"Aaron" <abroadway@ameritrust.com> wrote in message news:05a601c365df$b31a8d40$a401280a@phx.gbl... "SUM(ABS(action_date>= {" & start_date2 & "}... -
Select Statement Question (Again)
I have the following simple Select statement which produces an error when I attempt to save it as part of a stored proc. Select InvoiceID,... -
SELECT statement
I have 3 tables: table countryPrice: productID countryId price 1 Italy 90 1 England ... -
Roji. P. Thomas #2
Re: SP with Select statement
Execute the second SP and store the values to
a table variable or temp table.
Now your job is easy that all you have to do is
SELECT * FROM tblItem WHERE itemID IN (Select id from temptable)
Or better do an INNER JOIN with the temp table.
--
Roji. P. Thomas
SQL Server Programmer ;)
________________________
"Gerald" <gege107@hotmail.com> wrote in message
news:u0qQXrNtDHA.2360@TK2MSFTNGP09.phx.gbl...> Hi,
>
> I'm trying to select fileds that are in the results of a SP.
>
> So I have the table "tblItem"
>
> itemID int Identity Key,
> itemName varchar (100),
> itemDate smalldatetime
>
> I have a SP "p_getItemID"
> which is lets say
> SELECT TOP 10 itemID FROM tblItem
>
>
> Now what I want to do is:
>
> SELECT * FROM tblItem WHERE itemID IN (EXEC p_getItemID)
>
> I want to select from the table but only the itemId's returned by the sp.
> Can you do that?
>
> Thanks
>
> Gerald
>
>
Roji. P. Thomas Guest
-
Bob Barrows #3
Re: SP with Select statement
Gerald wrote:
> Hi,
>
> I'm trying to select fileds that are in the results of a SP.
>
> So I have the table "tblItem"
>
> itemID int Identity Key,
> itemName varchar (100),
> itemDate smalldatetime
>
> I have a SP "p_getItemID"
> which is lets say
> SELECT TOP 10 itemID FROM tblItem
>
>
> Now what I want to do is:
>
> SELECT * FROM tblItem WHERE itemID IN (EXEC p_getItemID)
>
> I want to select from the table but only the itemId's returned by the
> sp. Can you do that?
>
> Thanks
>
> Gerald
[url]http://www.algonet.se/~sommar/share_data.html[/url]
HTH,
Bob Barrows
--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
Bob Barrows Guest
-
John Bell #4
Re: SP with Select statement
Hi
You can do this either by changing the stored procedure in to a
function or using a temporary table and the execute_statement option
with the INSERT statement see
[url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/tsqlref/ts_ia-iz_5cl0.asp[/url]
John
"Gerald" <gege107@hotmail.com> wrote in message news:<u0qQXrNtDHA.2360@TK2MSFTNGP09.phx.gbl>...> Hi,
>
> I'm trying to select fileds that are in the results of a SP.
>
> So I have the table "tblItem"
>
> itemID int Identity Key,
> itemName varchar (100),
> itemDate smalldatetime
>
> I have a SP "p_getItemID"
> which is lets say
> SELECT TOP 10 itemID FROM tblItem
>
>
> Now what I want to do is:
>
> SELECT * FROM tblItem WHERE itemID IN (EXEC p_getItemID)
>
> I want to select from the table but only the itemId's returned by the sp.
> Can you do that?
>
> Thanks
>
> GeraldJohn Bell Guest



Reply With Quote

