0

我创建了两个表名为 abc1 和 xyz。

abc1 具有列 ID、名称和添加。其中 xyz 表具有 id,mob。

select name from abc1 where id =(select id from xyz)

收到错误

解析查询时出错。[令牌行号=1,令牌行偏移量=34,错误令牌=选择]

请帮我解决这个问题。

4

1 回答 1

0

select name from abc1 where id IN (select id from xyz) // 因为 select id from xyz 可以返回很多行

或者

select name from abc1 where id =(select id from xyz where mob=...) // for only one result
于 2012-07-25T12:09:22.777 回答