使用两个外键连接查询的 Medoo 语法

Medoo Syntax for Join Query with Two Foreign Keys

我需要在 SQL 中使用相同 table 上的两个外键执行连接操作。下面 post 中的答案有 SQL 满足我的要求。

我正在尝试将此查询转换为 Medoo 语法,但没有得到所需的输出。下面的代码 posted 是我最近的努力,但没有用。

$db -> select( "item_tbl", [ "[>]user_tbl.id" => ["ownerId", "lastModifiedById"] ], ["username", "username", "itemName"]);

有人可以帮忙吗?

我自己使用别名构建了 Medoo 语法。下面是上面 SQL:

的 Medoo 等效代码
$db->select("item_tbl",["[><]user_tbl(user_tbl_a)" => ["item_tbl.ownerId" => "id"],"[><]user_tbl(user_tbl_b)" => ["item_tbl.lastModifiedById" => "id"]],["user_tbl_a.username(Owner)","user_tbl_b.username(Modifier)","itemName"]);