Hi, I have a stored procedure which is shown below : CREATE PROCEDURE Products_SelectSearch @SearchCriteria nvarchar(255) AS SELECT ProductID, ProductName, ProductCategoryName, ProductImageID, SUBSTRING(Description, 1, 150) + '...' AS Description, Price FROM Products INNER JOIN ProductCategory...