今天需要根据时间判断,统一修改某一个字段的数据.然后打开数据库发现,时间类型为timestamp类型.如下: 然后呢,这对我不是喝口水就可以解决的问题吗? 解决方案如下:我需要改这张表某个字段的内容,语句为下: update credit_directory_attribute e set e.attribute_name='行政相对人名称' where e.attribute_name='法人名称' and to_date(to_char(e.create_date,'yyyy-mm-dd')
CREATE OR REPLACE FUNCTION C2B (b IN CLOB default empty_clob()) RETURN BLOB -- typecasts BLOB to CLOB (binary conversion) IS res BLOB; b_len number := dbms_lob.getlength(b) ; dest_offset1 NUMBER := ; src_offset1 NUMBER := ; amount_c INTEGER := DBMS_L