Hi everyone,
I am working on a access database and I have to separate a field that has been concatenated. For example the value of the field History is (for example) '10/23/2004Poster' (without the quotes) but it can also be 'View, 10/23/2004'. I want to separate the date from the word and put each in it's own field (rDate and rWord). There are 10 000 entries. How can I do this with SQL. I have been able to extract the word from the History field and place it in the rWord field (update myTable set rWord='Poster' WHERE History LIKE '*Poster*') - I have done this with 'View' and all other words found. But I haven't succeeded with the date. Can anyone help me? Thank
I am working on a access database and I have to separate a field that has been concatenated. For example the value of the field History is (for example) '10/23/2004Poster' (without the quotes) but it can also be 'View, 10/23/2004'. I want to separate the date from the word and put each in it's own field (rDate and rWord). There are 10 000 entries. How can I do this with SQL. I have been able to extract the word from the History field and place it in the rWord field (update myTable set rWord='Poster' WHERE History LIKE '*Poster*') - I have done this with 'View' and all other words found. But I haven't succeeded with the date. Can anyone help me? Thank