我正在编写一个与 MySQL 数据库交互的应用程序。
我有 3 张桌子,“类别”、“书籍”和“书籍类别”。
/* stores properties for categories */
`categories` (
`id` int(11) NOT NULL auto_increment,
`name` varchar(140) NOT NULL UNIQUE,
PRIMARY KEY (`id`)
);
/* stores properties for books */
`books` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` int(11) NOT NULL,
`read` tinyint(1) NOT NULL default 0,
`creation_date` timestamp NOT NULL default CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
);
/* matches books against categories */
`book_category` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`category_id` int(11) NOT NULL,
`item_id` int(11) NOT NULL,
PRIMARY KEY (`id`)
);
我有 2 个变量来执行搜索。
<?php
$categoryString = 'python'; // books saved under python
$readBool = 1; // all books that have been read
?>
我想编写以下 SQL 查询:
选择所有已阅读的python书籍(即book.read = 1)。
我的SQL知识很有限,请大家帮忙。