>>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 '"%'