I want to use unhex function for each item in the string seperated by comma. In this string this binary id as string sent by front end.
select * from table where id in
('5534B753765411E6B3FA0021004B111C,1668309A6E6F11E6B405F819928F1AD1,4FE75C954EEB11E6BB970F782D79D6C8')
I want to use this like
select * from table where id in (unhex('5534B753765411E6B3FA0021004B111C'),unhex('1668309A6E6F11E6B405F819928F1AD1'),unhex('4FE75C954EEB11E6BB970F782D79D6C8'))
whereclause. Check the mysql docs: dev.mysql.com/doc/refman/5.5/en/…