Oracle sql语句把字段中的某个字符去掉

2024-11-19 16:31:24
推荐回答(3个)
回答1:

1、创建测试表,

create table test_date2(id int , v_date varchar(20));

2、插入测试数据

insert into test_date2 values(1,'2014-01');

insert into test_date2 values(2,'2014-02');

insert into test_date2 values(3,'2014-03');

insert into test_date2 values(4,'2014-04');

insert into test_date2 values(5,'2014-05');

insert into test_date2 values(6,'2014-06');

commit;

3、查询表中数据,可以发现字段中带有字符,'-',select t.* from test_date2 t;

4、编写sql,把字段中的字符‘-’去掉; select t*, replace(v_date,'-','') v_date2 from test_date2;

回答2:

不知道你日期字段是date型还是varchar型

date型的话,你就改不了

varchar的话可以用

select replace(字段名,'-','') from 表名

回答3:

select replace('2014-05','-','') from dual

replace 第一个参数:字段/值,第二个参数时替换字符,第三个是被替换成的字符。

日期类型的,先to_char一下