我正在尝试使用MEDOO加入两个表,我面临的问题是我正在构建的查询没有返回任何数据(它返回false)。我按照这个普通的SQL代码完成了查询
select posts.id, title, extract, img_principal, users.username, date, category, platform, url from posts, users where users.username in (select username from users where users.id = posts.author);
结果就是这个:
$lastPost = 10;
$database = new medoo([
'database_type' => 'mysql',
'database_name' => 'notijuegosdb',
'server' => 'localhost',
'username' => 'root',
'password' => '',
'charset' => 'utf8'
]);
$database->select("posts", [
"[>]users" => ["author" => "users.id"]
], [
'posts.id',
'posts.title',
'posts.extract',
'posts.img_principal',
'users.username',
'posts.date',
'posts.category',
'posts.platform',
'posts.url'
], [
'posts.id[<]'=> $lastPost
]);
SQL代码在我直接使用数据库时工作得很好所以它可能是我构建查询的方式的问题......不确定可能出现什么问题。
提前多多感谢。
答案 0 :(得分:1)
您可以使用用于复杂查询的查询medoo方法对此进行归档:
$postsData = $database->query("select posts.id, title, extract, img_principal, users.username, date, category, platform, url from posts, users where users.username in (select username from users where users.id = posts.author);")->fetchAll();
就像Medoo医生说的那样:
此函数用于特殊和自定义SQL查询,用于复杂查询。对于要插入的每个数据,请使用quote函数来防止SQL注入。