查询从多个表中选择公共记录

时间:2015-04-28 07:02:25

标签: mysql

我有3张桌子

  1. '招聘',
  2. 'project',
  3. '位置'。
  4. 所有这三个表都使用另一个表'template'的主键

    现在,我想从其中使用“templateId”的所有三个表中获取记录数。

1 个答案:

答案 0 :(得分:0)

你的意思是这样的:

render: function(){
var rows = this.props.value.map(function(row) {
    //Add props to your LiComponent just as you would normally. 
    return <LiComponent />;
});
return (
    <div style={style}>
        {rows}
    </div>
);
}