is there a way to write a query so that instead of the raw data bieng returned, it is mapped to something else?
i.e. if there is a table that looks like:
1 5 7
2 6 7
1 6 8
is there a way to run a query so that 1 gets replaced by "string" in column 1, 6 by "string2" in column two and the like?
I do not mean an update query, i just want to resulant table to display it with the strings, and not have that stored in a permanent table in the database.
i.e. if there is a table that looks like:
1 5 7
2 6 7
1 6 8
is there a way to run a query so that 1 gets replaced by "string" in column 1, 6 by "string2" in column two and the like?
I do not mean an update query, i just want to resulant table to display it with the strings, and not have that stored in a permanent table in the database.