我在我的表得到這個2行:Mysql的選擇與FIND_IN_SET兩個StringList的
1, 'Halo: Reach', 2010, ''fps','sci-fi'', '"The best game of the year".', 'Microsoft', 'Bungie', 'XBOX 360', 9.5, 'http://wuwb.com/wp/wp-content/uploads/2009/06/halo_reach.thumbnail.jpg', '', ''
2, 'FIFA 11', 2010, 'sport,soccer', '"The best soccer game ever"', 'EA', 'EA', 'PC, XBOX 360, PS3', 10, 'http://wuwb.com/wp/wp-content/uploads/2009/06/halo_reach.thumbnail.jpg', '', ''
而且在我的PHP腳本我有:
$Genres = "sci-fi,sport,soccer"; // After using the sumbit button
我需要做的順序選擇查詢按類型劃分,所以國際足聯11將首先和光環:達到第二。所以我嘗試使用find_in_set,但它不能使用兩個字符串列表。
我想到的唯一選擇是爲每個類型的IN子句和一些字段的排序和限制做的事情,但我認爲這是非常糟糕的方式來做到這一點。