I have a primary kew which is a binary(16) UUID in a field called binid.
I would like to get ALL columns including the binary id with a SELECT statement.
I know I can do "SELECT * FROM TABLE", but how to combine with HEX(binid)?
This works when I get individual fields: "SELECT HEX(binid) AS binid FROM TABLE"
but I dont want to mention all of the fields (too many). Is there a way to get ALL and HEX in one statement?
PS. I am creating based on stackoverflow question: How to store uuid as number?