|
I need to spilt a date into two columns based on the HYPHEN Any suggestions? EXAMPLE 6/13/2012-6/12/2013 It works for EndDate but not for StartDate
(comments are locked)
|
(comments are locked)
|
|
Why do you store two dates in one column? If possible, you should change your data model so you store the two dates in separate columns. Also store them in date or datetime columns, not as text. That will ensure you have proper dates stored. If the two dates are collected from a text field in an app or so, you should use the application code to split the string and collect the two separate dates. String manipulation is quicker and more sophisticated in other languages than T-SQL. If the two dates are stored like that in an external source that you are loading from, I suggest using SSIS to transform them into two different columns. As far as the solution using T-SQL, I think sunil2711 is there, or at least close enough for you to work it out on your own. It's not my data model it was data that we received. I agree thougha very poor data model
Jul 25 '12 at 02:00 PM
sqlLearner 1
(comments are locked)
|

