Question : SQL Query

Can anyone suggest why the following query is giving error.

select cast((replace(replace(replace(left(address,70),CHAR(10),' '),char(13),' ')),'"','') as varchar(70))
as address
from contact

In addition to this from where can i get the list of ascii characters.

Answer : SQL Query

paranthesis mismatch

select cast(replace(replace(replace(left(address,70),CHAR(10),' '),char(13),' '),'"','') as varchar(70))
as address
from contact
Random Solutions  
 
programming4us programming4us