你應(yīng)該在存入時將數(shù)組進行序列化,讀出時在進行反序列化
創(chuàng)新互聯(lián)是專業(yè)的陳巴爾虎網(wǎng)站建設(shè)公司,陳巴爾虎接單;提供成都網(wǎng)站建設(shè)、網(wǎng)站制作,網(wǎng)頁設(shè)計,網(wǎng)站設(shè)計,建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進行陳巴爾虎網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團隊,希望更多企業(yè)前來合作!
serialize
unserialize
$result = mysql_query("SELECT * FROM table");
$data = array();
while($rs = mysql_fetch_assoc($result)){
$data[] = $rs;
}
print_r($data);//$data就是數(shù)組了
假設(shè)是數(shù)組形式如:需要查1,2,3,4,5,6的數(shù)據(jù)就用in :select * from table where num in(1,2,3,4,5,6)
如果需要查詢范圍內(nèi)的,如:查詢1-6范圍內(nèi)的可以:
select * from table where num 1
and num 6
簡單的方法可以用一個字段存放,各個值以“,”隔開。取出后,以","分隔后使用呢