Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Dynamically building a SQL statement 1

Status
Not open for further replies.

Viruland

Programmer
Dec 6, 2000
61
0
0
BE
I created a SP that shows me the last IDNr for a certain table. The problem is that the variable @nr never gets a value. Can someone tell me what is wrong here

create proc test
@aTable as nvarchar(255)
AS
declare @sql as nvarchar(2000)
declare @nr as nchar(12)

set @sql = 'SELECT ' + convert(nchar(12),@nr) + ' = MAX(IDNr) FROM ' + @aTable

print @nr



Live fast, die young and leave a beautiful corpse behind.
 
Look up sp_executesql in BOL:

Code:
DECLARE @tbl sysname,
	@num int,
	@sql nvarchar(1000)

SET @tbl = 'table_name'

SET @sql = 'SELECT @n = MAX(IDNr) FROM ' + @tbl

EXEC sp_executesql @sql, N'@n int OUTPUT', @num OUTPUT

PRINT @num

--James
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top