Hi All,
I know I can break a column's value after I get the result set but can I break it in the SQL statement. something like:
The data type of column2 is a float so I need to convert it to a string first. Can someone please help me with syntax? Thanks.
I know I can break a column's value after I get the result set but can I break it in the SQL statement. something like:
Code:
Select Left(column2,4) as first4, Right(column2,4) as last4
from ...blab ..blab
The data type of column2 is a float so I need to convert it to a string first. Can someone please help me with syntax? Thanks.