type set('热血','励志','污','友情','冒险') DEFAULT NULL, +----+--------------+ | id | type | +----+--------------+ | 0 | 热血,污,冒险 | +----+--------------+
就是我只拿 type 包含 '热血' 的,当然也包含其他内容, 比如上面那条,不只有热血,还有冒险,搜索语句怎么写?
认证0级讲师
select * from table where `type` like '%热血%';
Like 用法:http://www.w3school.com.cn/sq...
认证0级讲师