Hi ppl,
This is a little backwards as I know how to do this but I could really do with an easier way.
I have the situation where I have addresses (postal) that I need to extract from SQL. Unfortunately the address do differ from field to field e.g.
address1, blank, address3, address4, postcode
blank, blank, address3, address4, postcode
address1, blank, blank, address4, postcode
I need the extract to shift the fields that contain data to the left, into the blank fields.
So take the above and make it:
address1, address3, address4, blank, postcode
address3, address4, blank, blank, postcode
address1, address4, blank, blank, postcode
I could do this using a CASE statement, however this will get very long and unpleasantly complicated very quickly.
Does anyone know of another way?
This is a little backwards as I know how to do this but I could really do with an easier way.
I have the situation where I have addresses (postal) that I need to extract from SQL. Unfortunately the address do differ from field to field e.g.
address1, blank, address3, address4, postcode
blank, blank, address3, address4, postcode
address1, blank, blank, address4, postcode
I need the extract to shift the fields that contain data to the left, into the blank fields.
So take the above and make it:
address1, address3, address4, blank, postcode
address3, address4, blank, blank, postcode
address1, address4, blank, blank, postcode
I could do this using a CASE statement, however this will get very long and unpleasantly complicated very quickly.
Does anyone know of another way?