Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: Count Decimal Places

    Jeff Moden - Tuesday, May 23, 2017 9:34 PM

    Jeff Moden - Tuesday, May 23, 2017 7:16 PM

  • RE: Count Decimal Places

    Easiest Way to find out.
    -- For digits
    Select Left(COLUMN_NAME, Case When CharIndex('.',COLUMN_NAME) = 0 Then 0 Else CharIndex('.',COLUMN_NAME)-1 END) as 'LeftPortion',
       RIGHT(COLUMN_NAME, len(COLUMN_NAME) - CharIndex('.',COLUMN_NAME)) as 'RightPortion'...

Viewing 2 posts - 1 through 2 (of 2 total)