Hello ISQL people,
This is probably an easy one but I'm finding it difficult since I am not too great at ISQL. I have a field that contains phone numbers and want to delete the ( ) -.
ex.. (212)555-1212 needs to be 2125551212
I can do this in T-SQL
as
update stage_guest
set phone = replace(phone,'(','')
go
update stage_guest
set phone = replace(phone,')','')
go
update stage_guest
set phone = replace(phone,'-','')
go
Anyone have an ISQL (Interbase 5.5) method?
I would appreciate any assistance, Thanks!
This is probably an easy one but I'm finding it difficult since I am not too great at ISQL. I have a field that contains phone numbers and want to delete the ( ) -.
ex.. (212)555-1212 needs to be 2125551212
I can do this in T-SQL
as
update stage_guest
set phone = replace(phone,'(','')
go
update stage_guest
set phone = replace(phone,')','')
go
update stage_guest
set phone = replace(phone,'-','')
go
Anyone have an ISQL (Interbase 5.5) method?
I would appreciate any assistance, Thanks!