vote up 4 vote down star

Hi,

I have a table with the columns employee, address, city, state and zipcode. I have merged address, city, state, zipcode to a single column 'address' separating each field by comma.

My issue is, if one of the fields is null, an extra comma will be inserted. For example if city is null the resulting value will be like address,,state,zipcode. I need to remove this extra comma. How to do this? Please help.

flag
what language do you use? – Irmantas Jan 9 at 12:13
-1: Why would you create a single column with four distinct values in it? – S.Lott Jan 9 at 12:22
why are you trying to do this? Usually, it actually makes sense to leave the extra comma so that it's blank (when it should be blank) – aronchick Jan 23 at 21:40

4 Answers

vote up 9 vote down

You could use a case when construct

   ... = case when city is null then '' else city + ',' end

If the values are already in the database you could replace it this way:

   UPDATE tableX SET address= replace(address, ',,', ',')

Execute it N times to be sure to cover even the "all fields are null" case.

link|flag
I'm pretty sure REPLACE() always replaces all occurrences. At least, it does in tSQL and MySQL, I'm not sure if it's part of the vanilla SQL standard. – Adam Bellaire Jan 9 at 13:00
Yes, but select for example select replace(',,,', ',,', ',') results in ,, – splattne Jan 9 at 13:30
vote up 1 vote down

or you can do this manually in php

<?php

$str = 'address,,state,zipcode';

$str = preg_replace('/,{2,}/i', ',', $str);
echo $str;

?>

I believe you can do this in your language too

link|flag
vote up 0 vote down

Use replace when you concat your string for insert :

REPLACE('address,,state,zipcode', ',,' , ',' )
link|flag
vote up 0 vote down

What about REPLACE('address,,,,,,state,,,,,,,,zipcode', ',,' , ',' )

I need 'address,state,zipcode' as answer.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.