从表中选择记录,表本身是另一个查询的结果

时间:2017-02-08 07:58:43

标签: mysql sql

我有以下mysql查询:

select opportunity_id from (select join_table from relationships where lhs_module='Accounts' and rhs_module='Opportunities')

我收到以下错误消息:  每个派生表都必须有自己的别名

是否可以从表格中选择记录,表格本身是另一个查询的结果?

1 个答案:

答案 0 :(得分:0)

为什么你需要加入同一个表才能使用'where'条件?

select opportunity_id from  relationships where lhs_module='Accounts' and rhs_module='Opportunities'

这应该对你有用,除非你有其他强度,然后到目前为止我们可以看到。