Laravel在连接4.1中使用别名时出错



错误为 ORA-00905:缺少关键字 Laravel 4.1 中的位置

->leftjoin('table1','table1.portid','=','ordertable.order_id'(

->leftjoin('table2 as dep','dep.portid','=','ordertable.departure'(

->leftjoin('table2 as arr','arr.portid','=','ordertable.arrival'(

在将别名用于连接 2(表 2 作为 dep(和 3(表 2 作为 arr(时出现错误,有人可以让我知道我必须在哪里使用,我的语法是否正确 V4.1

只需删除即可

->leftjoin('table1','table1.portid','=','ordertable.order_id'(

->leftjoin('table2 dep','dep.portid','=','ordertable.departure')
->leftjoin('table2 arr','arr.portid','=','ordertable.arrival')

相关内容

  • 没有找到相关文章

最新更新