Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Dynamic SQL and Variables
Message
General information
Forum:
Microsoft SQL Server
Category:
Stored procedures, Triggers, UDFs
Miscellaneous
Thread ID:
00235209
Message ID:
00235317
Views:
23
declare @lcTableSource varChar(20)
declare @lcFieldID     int
declare @lcFieldName   varChar(20)
declear @lcDynamicSQL  varChar(200)

select @lcTableSource = 'MyDataBase.dbo.Customer'

select @lcDynamicSQL = 'select @lcFieldID = c.customerid'
      + ' from ' + @lcTableSource + ' c'
      + ' where c.name like ''Test'' '
exec( @lcDynamicSQL )
>
>the last exec() statement gives me the error saying that variable @lcFieldID must be declared... The @lcTableSource will actually be part of a parameter list and qualified for legitimate values. The final result will be more complex because I may need many columns of unknown data types (until passed in).

Why not reference @lcFieldID like @lcTableSource?

SELECT @lcDynamicSQL = 'SELECT ' + @lcFieldID + ' = c.CustomerID'
...

Also, Would you post the finished SP? I curious how your calculating the previous and next 50 from a specific ID.

-Mike
Michael Levy
MCSD, MCDBA
ma_levy@hotmail.com
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform