我的问题是在Laravel框架中加入2个表.一个是动态名称表(它是一个变量),第二个是复合主键.我必须使用查询生成器而不是where().请查看我的以下详细信息:
原文链接:https://www.f2er.com/laravel/134664.html我有2张桌子:
CREATE TABLE `details` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT,`source_id` int(10) unsigned NOT NULL,`brand_id` int(10) DEFAULT NULL,PRIMARY KEY (`id`) ); CREATE TABLE `links` ( `source_id` int(10) unsigned NOT NULL,`brand_id` tinyint(3) unsigned NOT NULL DEFAULT '1',PRIMARY KEY (`source_id`,`brand_id`) );
现在,我需要加入2个这些表,我使用这个代码:
<?PHP $results = \DB::table('details') ->join('links',function($join) { $join->on('details.source_id','=','links.source_id'); $join->on('details.brand_id','links.brand_id'); }) ->get();?>
加入这些表非常简单,好的.但我的问题是表名是动态的.
<?PHP $type = Input::get('type',null); $table = $type . '_details'; $results = \DB::table($table) ->join('links',function($join) { // the following code will show errors undefined $table $join->on($table . '.source_id','links.source_id'); $join->on($table . '.brand_id','links.brand_id'); }) ->get(); ?>
请帮我解决这个问题.
非常感谢!!!