比如说我有以下数据库结构
Table: book
id | title | ...
Table: author
id | name | ...
Table: bookAuthor
id | bookid | authorid
在PHP中我有以下对象
class Book {
var $id;
var $title;
var $authors = array();
function Book() {}
}
class Author {
var $id;
var $name;
function Author(){}
}
现在,是否可以使用mysqli_fetch_object 来检索包含作者作为作者对象数组的书目对象?
如果可能,我很确定你需要基本的内部联接查询
SELECT * FROM tblbook INNER JOIN tblbookauthor on ... (wel you get the point)
有可能吗?
谢谢!