I want to use Truncate command with Select * query . I am thinking if something like a nested query is applicable just to determine if the returned column is a decimal value or not and apply truncate (2 decimal point) to it. A random version would look something like following -
Select * from my_Table ( Truncate if column = intiger)
Please provide pointers as on how to develop such kind of Query.