Reputation: 1351
I just need pass WHERE condition, like:
CREATE DEFINER=`root`@`localhost` PROCEDURE `productpricing2`(
IN cond CHAR(200)
)
BEGIN
SELECT * FROM tbl_products WHERE cond LIMIT 1;
END
and call it like:
CALL productpricing2("productName IS NOT NULL");
Where productName is column in table tbl_products
Thanks
Upvotes: 0
Views: 218
Reputation: 5885
Yes it's possible You can use prepared-statements for it, and build whole query as a string, but it's not an elegant way to do things...
also notice that:
Upvotes: 1
Reputation: 62395
Yes it is possible (although as HLGEM points out it opens you for possibility of SQL injections).
THe way to do this, is to create dynamic SQL using prepared statement.
Upvotes: 1