Hello, I have a query in my sql builder like this
That code is 100% working. My problem is I cant change it to something like thisCode:SELECT * FROM canvasstable WHERE (Material_Description LIKE '%a%')
I also tried something like thisCode:SELECT * FROM canvasstable WHERE (Material_Description LIKE '%' + @parameters +'%')
Please Help I really need it as much as possible. This is for our system.Code:WHERE (Material_Description LIKE CONCAT(@param, '%') AND = CONCAT('%', @param)




Reply With Quote