Note - 在 MySQL 使用 Like 在 Index 上的差異
以下是 SQL 範例使用的 Table Schema
CREATE TABLE IF NOT EXIST `books` (
`id` int(11) unsigned AUTO_INCREMENT,
`name` varchar(255) DEFAULT NULL,
`author` date DEFAULT NULL,
`publish_year` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name_publish_...
blog.taiwolskit.com2 min read