Answers for "create function and call function in mysql"

SQL
-1

create function in mysql

// created function checkTags
CREATE FUNCTION `data-management`.checkTags(tags text)
RETURNS text
DETERMINISTIC
BEGIN
return tags ;
END


// queries  according to it
SELECT * FROM `data-management`.properties p WHERE `data-management`.checkTags(p.tags = 'tag1,absntee')
Posted by: Guest on February-26-2021

Code answers related to "create function and call function in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language