0

我在 Mac 上使用 azure data studio

我想将另一个表中的数据加载到我创建的新表中,原始表列包含一些我的新表不应该具有的空值。我如何插入和排除空值?

insert into [Faculty].[Department](
    DepartmentName,
    DepartmentCode
)
select departmentName, departmentCode
from [].[]

但我希望我的新表排除空值,我尝试了 where 语句,但没有奏效,请帮助 :(

4

1 回答 1

0

不确定您使用的是什么数据库。您可以在下面尝试吗,

insert into [Faculty].[Department](
         DepartmentName,
         DepartmentCode
     )
     select departmentName, departmentCode
     from anothertable 
     where anothertable.col is NOT null
于 2020-05-06T20:32:32.053 回答