tags:

views:

22

answers:

1

i am trying to get all chars before the space:

SUBSTRING(reporttime,1,CHARINDEX(reporttime,' ',1))

but it is not working. please help!

example data:

7/8/2010 11:47 AM
7/8/2010 10:55 AM
+7  A: 
Select Substring( MyTextColumn, 1, CharIndex( ' ', MyTextColumn ) - 1)

Actually, if these are datetime values, then there is a better way:

Select Cast(DateDiff(d, 0, MyDateColumn) As datetime)
Thomas
+1: `7/8/2010 10:55 AM` returns `7/8/2010`. ...and, you beat me...
OMG Ponies