一:查询字符串类型的字段的值不为空的SQL: select * from TB_CMS_FLGTINFO_A t where (t.fsta is not null and t.fsta <>' '); 主:上面的TB_CMS_FLGTINFO_A是表名,fsta是表中的字段 二:查询字符串类型的字段的值为空的SQL: select * from TB_CMS_FLGTINFO_A t where (t.fsta is null or t.fsta =' '); 主:上面的TB_CMS_FLG…
今天需要根据时间判断,统一修改某一个字段的数据.然后打开数据库发现,时间类型为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')…
linux 时间戳 转date: 创建自定义函数: create or replace function unix_to_oracle(in_number number) return date is begin ,))); end unix_to_oracle; 使用: ) from dual; date 转linux时间戳: create or replace function oracle_to_unix(in_date in date) return number is…