I'm having real problems trying to do an inner join through medoo. Looking at all the resources I can find, there shouldn't be anything wrong with the code below, but it's just coming blank. It's not throwing any errors either.
"wp_ch_station",
["[><]wp_ch_statuses" => ["wp_ch_station.status" => "wp_ch_statuses.id"]],
["wp_ch_station.id", "wp_ch_station.name", "wp_ch_statuses.status", "wp_ch_station.time"],
["id[!]" => $client_id]
If I change it to the following, I get the full output of "wp_ch_station" as I'd expect.
$table_prefix . "ch_station",
["id", "name", "status", "time"],
["id[!]" => $client_id]