我有这两个选择语句,我想将它们显示在我控制中的表格中
$modName = DB::table('dbo_modules')
->join('dbo_modulecategory' , 'dbo_modules.CategoryID' , '=' , 'dbo_modulecategory.CategoryID')
->select('dbo_modules.ModuleID', 'dbo_modules.ModuleName', 'dbo_modulecategory.CategoryName')
->get();
$getModID = DB::table('dbo_purchaseorders')
->select('dbo_purchaseorders.ModuleID' , 'dbo_purchaseorders.Quantity')
->get();
任何想法?感谢
答案 0 :(得分:1)
您可以使用crontab -e
@reboot /home/bashar/www/node/server.js
方法合并两个或多个查询的选择结果,请参阅此处:union
因此,在您的情况下,鉴于您已引用union
和$modName
,您可以执行以下操作:
$getModID
并在这里结合:
$modName = DB::table('dbo_modules')
->join('dbo_modulecategory' , 'dbo_modules.CategoryID' , '=' , 'dbo_modulecategory.CategoryID')
->select('dbo_modules.ModuleID', 'dbo_modules.ModuleName', 'dbo_modulecategory.CategoryName');