sql中如何去除值为null的列
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql中如何去除值为null的列相关的知识,希望对你有一定的参考价值。
rt
1、创建测试表,含三个字段;
create table ckx_test_null
(id number, val1 varchar2(20), val2 varchar2(20));
2、插入数据,两列有值,一列为空;
insert into ckx_test_null
(id, val1, val2)
select store_abbreviation, goodmodel, null from sys.ckx_test_a t
where rownum<100000
3、查看数据插入情况,可以发现最后一列值都为null;
4、执行删除操作,将值为null的列删掉;
alter table CKX_TEST_NULL drop column val2;
5、再次查看表数据;可以发现最后一列已经被删除。
select * from ckx_test_null;
参考技术A where 列名 is not null上面是刨去列中值为NULL的行
要去除NULL值的列是没办法的。。。除非你不查这个列。。但不查你怎么知道那列有没有NULL?
你要是怕有NULL值返回可以在列前加ISNULL
SELECT A,ISNULL(B,0) FROM TABLE本回答被提问者采纳 参考技术B 用select * from table where a is not null来删除数据
然后修改这个字段,加入not null非空约束 参考技术C delete from 表 where 列名 is null 参考技术D 假使为null的列名为a
select * from tab where a is not null
mybatis插入数据传入值为null时提示无效的列类型
参考技术A mybatis插入数据传入值为null时提示无效的列类型原因:mybatis无法解析值的类型
方法一
方法2
原因:mybatis无法解析值的类型
方法一
因为无法解析null为何种类型,可对传入值在xml中指定类型,如下
<insert id="batchInsertQuestion" useGeneratedKeys="false">
insert all
<foreach collection="list" item="item" index="index">
into ZB_APPRAISE_RECORD_QUESTION (id, record_id, question_name, sort_no, created_by, created_time,
modified_by,
modified_time,option_type,appraise_id)
values
(#item.id,#item.recordId,#item.questionName,jdbcType=varchar,#item.sortNo,#item.createdBy,#item.createdTime,#item.modifiedBy,#item.modifiedTime,#item.optionType,#item.appraiseId)
</foreach>
select 1 from dual
</insert>
方法2
在mybatis-config.xml配置文件中配置:
<?xml version=”1.0” encoding=”UTF-8” ?>
<!DOCTYPE configuration PUBLIC “-//mybatis.org//DTD Config 3.0//EN” “http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
…
<settings>
<setting name="jdbcTypeForNull" value="NULL" />
</settings>
…
</configuration>
springboot yml配置方法如下
mybatis-plus:
configuration:
jdbc-type-for-null: 'null' #注意:单引号
以上是关于sql中如何去除值为null的列的主要内容,如果未能解决你的问题,请参考以下文章