
January 14th, 2005, 05:12 AM
|
|
Registered User
|
|
Join Date: Jan 2005
Posts: 1
Time spent in forums: 43 sec
Reputation Power: 0
|
|
Append new properties to sql statement
Like mentioned above, i'm trying to append more SQL statement into existing SQL statement in "Stored Procedures" in MS SQL Server (in "Enterprise Manager App" part). Eg.
Existing SQL statement in Stored Procedures is:-
Code:
SELECT * FROM Table1
Then i add a string from ASP page with VBscript where the string contains string SQL code to be appended:-
Becoming
Code:
SELECT * FROM Table1 WHERE banana=@b
Thx
|