I am trying to turn a working SQL statement into an SP. The error
occurs when I try to use three parameters in a row, which are all
passed from a web page.
CREATE PROCEDURE [search_tool]
AS
tables.columns etc...
FROM table1 etc...
WHERE table1.column4 > '0'
AND TABLE.column1 = 'TO_THIS'
Any advice would be great.
Sam