Thanks everyone for your valuable time and help on this . It is working for me now.
Earlier I was doing same what you all have suggested but it was not working for me. So here I am writing the reason why it was not working earlier and now its worked for me. It might help someone.
Only difference was that ,earlier the field was having spaces after , before the field in which I want to use double quotes. Below is the sample for which it was not working.
***************************** Top of Data **********
'033','80','00008', "AK1,MA", EMI
**************************** Bottom of Data *******
So if someone want to keep a field in double quote then starting double quote of that field should began just after the preceding , . Sample is given below which worked .
***************************** Top of Data **********
'033','80','00008',"AK1,MA", EMI
**************************** Bottom of Data *******
Note - If we are not using any double quotes for any fields then spaces between fields separated by comma is enough to get this result.
'033', '80', '00008', AK1, EMI
Here I have not used any double quotes so in this case spaces will not affect our result , is enough to keep fields in different column of the excel.
Again thanks to everyone for helping me.
You forgot to use the code tags. They should be used for everything that comes from your terminal. coded for you.