gpt4 book ai didi

Oracle "create table as"空值

转载 作者:行者123 更新时间:2023-12-04 23:17:10 29 4
gpt4 key购买 nike

如果您使用“创建为”创建一个 Oracle 表,其中您的字段之一为空,您将收到错误:

ORA-01723: zero-length columns are not allowed



示例查询:
create table mytable as 
select
field_a,
null brand_new_field
from anothertable;

你怎么能解决这个问题?

最佳答案

想通了需要使用cast(null as datatype)

create table mytable as 
select
field_a,
cast(null as varchar(1)) brand_new_field
from anothertable;

更多信息 here .

关于Oracle "create table as"空值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37417471/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com