Question : TSQL - removing quotes in address line

HI, I have a value like "46 Oakington Avenue in the field
called address1. When I paste the data in excel, its creating a problem.
Can any one give me the TSQL Code to find all the addresses
beggining with double quotes('') .

HOw do i select the valule with out the quotes like
46 Oakington Avenue   ?

Many Thanks

Answer : TSQL - removing quotes in address line

>>TSQL Code to find all the addresses beggining with double quotes
select * from table_name where field_name like '"%'

>>HOw do i select the valule with out the quotes
select replace(field_name, '"', '') as field1, * from table_name where field_name like '"%'
Random Solutions  
 
programming4us programming4us