I have this value in my MYSQL table "Test " (=="Test") this text is basically in decimal format. more info: https://en.wikipedia.org/wiki/T#Computing_codes i am trying to run a select query as its a regular text. these are the tests i'm running:
1. query: select TRIM(Leading ',' FROM replace(trim(name),"&#",",")) from table where id = 1;
output: 84,101,115,116
2. query: select char(84,101,115,116);
output: Test
3. query: select char(TRIM(Leading ',' FROM replace(trim(name),"&#",","))) from table where id = 1;
output: T
How can i get the whole word instead of just the first character?
Thanks,
Nir.