I have a value to store in my table
104
the only exponent that i can store is ²
.
any solution ?!?
I have a value to store in my table
104
the only exponent that i can store is ²
.
any solution ?!?
You can try to use translate function to make a mapper table.
LOG
to get exponent from ten, then use concat
to get your expect result.
SELECT concat(10,translate(LOG(1000)::varchar, '123456789', '¹²³⁴⁵⁶⁷⁸⁹'))