mysql:从tab1中的tab1中选择。 tab2名称是concat(tab1.id +' _details)

时间:2016-11-11 10:24:23

标签: mysql select concatenation exists

你们可以帮助我吗:

我有这些表

产品:

ID |   udate    | desc
-------------------------
1  | 2016-03-23| item a    
2  | 2016-03-24| item b

1 _details:

enter_date | qty | enable | para2 ...
-------------------------------------------
 2016-02-23|  5  |    1   | ... | ...

2 _details:

enter_date | qty | enable | para2 ...
-------------------------------------------
 2016-02-24|  6  |   0    | ... | ...

我想:

Select all from products where

Exists (Select From products.id+'details' Where enable - '1')

我的问题是在Exists中连接表的名称。

结果应该是: 1 | 2016年3月23日|项目a

0 个答案:

没有答案