این آموزش به درد دوستانی می خورد که می خواهند در برنامه نویسی با فریم ورک لاراول بین دو جدول از دیتابیس ارتباط برقرار بکنند .
ایجاد ارتباط ساده بین دو جدول در لاراول
DB::table('users') ->join('posts', function($join) { $join->on('users.id', '=', 'posts.user_id')->orOn(...); }) ->get();
</pre> DB::table('users') ->join('contacts', 'users.id', '=', 'contacts.user_id') ->join('orders', 'users.id', '=', 'orders.user_id') ->select('users.id', 'contacts.phone', 'orders.price') ->get(); <code> ;</code> <pre>
</pre> DB::table('users') ->join('contacts', 'users.id', '=', 'contacts.user_id') ->join('orders', 'users.id', '=', 'orders.user_id') ->select('users.id', 'contacts.phone', 'orders.price') ->get(); <pre>
بر قراری Left Join ساده در laravel
DB::table('users') ->leftJoin('posts', 'users.id', '=', 'posts.user_id') ->get();
DB::table('users') ->leftJoin('posts', 'users.id', '=', 'posts.user_id') ->get();
ارتباط های پیشرفته در لاراول Join
DB::table('users') ->join('contacts', function($join) { $join->on('users.id', '=', 'contacts.user_id')->orOn(...); }) ->get();
DB::table('users') ->join('contacts', function($join) { $join->on('users.id', '=', 'contacts.user_id')->orOn(...); }) ->get();
ایجاد شرط در join در لاراول :
DB::table('users') ->join('contacts', function($join) { $join->on('users.id', '=', 'contacts.user_id') ->where('contacts.user_id', '>', 5); }) ->get();
DB::table('users') ->join('contacts', function($join) { $join->on('users.id', '=', 'contacts.user_id') ->where('contacts.user_id', '>', 5); }) ->get();