//排序
select * from table where field_1 in ({$book_id}) order by field(field_1,{$book_id})
//不排序
select * from table where field_1 in ({$book_id}) ORDER BY INSTR(',{$book_id},',CONCAT(',',field_1,','))
//排序
select * from table where field_1 in ({$book_id}) order by field(field_1,{$book_id})
//不排序
select * from table where field_1 in ({$book_id}) ORDER BY INSTR(',{$book_id},',CONCAT(',',field_1,','))