Viewing 2 posts - 1 through 2 (of 2 total)
All columns have to be of the same data type AND length. That was the only way I got mine to work, by converting them all to varchar(50).
If I...
March 24, 2011 at 1:13 pm
#1303190
Good article, though I would chnage this query:
--EXECUTE ProductSearch5 'CA%', 'Black', 375
CREATE PROCEDURE ProductSearch5
(
@ProductNumber VARCHAR(20),
@Color VARCHAR(10),
@ReOrderPoint INT
)
AS
SET...
September 25, 2009 at 1:03 pm
#1058636