SQL - 限制来自另一个插入的值 table

SQL - Limit the values in an Insert from another table

我正在尝试插入以下内容:

insert into TABLEA select b.ID,..... from TABLEB b where code = 'NL'

问题是 select * from TABLEB where code = 'NL'; returns 超过 1 个值。

是否可以将其限制为仅 1 个值?

我试过select min(b.id)但没用

使用 rownum = 1

insert into TABLEA select b.ID,..... from TABLEB b where code = 'NL' and rownum = 1

但是你确定要这样做吗?如果它实际上是您想要的第二行怎么办?您可能想弄清楚为什么您的查询返回了多个。

据我所知,您只需要插入一个 where code = NL 的实例,即使有多个记录符合此条件。

如果这是您想要的,请将您的 "select *" 更改为 "select top 1 *",它只会从您的子查询中提取一条记录。