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
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)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With