to hexYou have access to a table of monsters as follows:
- id
- name
- legs
- arms
- characteristics Your task is to turn the numeric columns (arms, legs) into equivalent hexadecimal values.
- legs
- arms
SELECT TO_HEX(legs) legs, TO_HEX(arms) arms FROM monsters;