Query a string of text?

  • Can someone help me with how to query a string of text? Below is a string of data from a column in my database called 'calldata'

    1 1724 ^E16107/30/2006SUSAN07/30/200616

    What I'm trying to do is see what different values show up between the tags for order version.

    Thanks

    Ron

  • Use CHARINDEX function.

     

    SELECT Calldata, CHARINDEX('/', Calldata) FROM [Ron's Table]


    N 56°04'39.16"
    E 12°55'05.25"

  • Thanks! Once again you've been a great help Peter!

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

You must be logged in to reply to this topic. Login to reply