I've got an id column in my mysql table which contain a uuid in a binary(16) form , if i will select only this specific column like this:
SELECT uuid_from_bin(id) FROM table_name;
i will get the uuid properly but as soon as i try to select * like this:
select * from table_name;
i'm getting the uuid in binary form.
i tried something like this:
SELECT uuid_from_bin(id),* FROM table_name;
but this gives me an error