1問題描述:根據始末日期查詢數據,由於資料庫數據量大,用between and很慢,就添加了year,month,day字段,在比較年月日的時候有substr和date兩種方法,兩種都嘗試過每次載入時間都在變化,也沒找到相關的技術文章。理論上是兩種速度都差不多,還是有相對快速的方法?感謝每一個答題者。
2.相關程式碼片段:
//substr
if(substr($startTime,0,4) == substr($endTime,0,4)){
$str .= " L.year = ".substr($startTime,0,4);
if(substr($startTime,4,2) == substr($endTime,4,2)){
$str .= " and L.month = ".substr($startTime,4,2);
if(date('Ynd',strtotime($startTime)) == date('Ynd',strtotime($endTime))){
$str .= " and day = ".date('d',strtotime($startTime));
}else{
$str .= " and log_date between '$startTime' and '$endTime' ";
}
}else{
$str .= " and log_date between '$startTime' and '$endTime' ";
}
}else{
$str .= " L.log_date between $startTime and $endTime";
}
//date
if(date('Y',strtotime($startTime)) == date('Y',strtotime($endTime))){
$str = " where year = ".date('Y',strtotime($startTime));
if(date('Yn',strtotime($startTime)) == date('Yn',strtotime($endTime))){
$str .= " and month = ".date('n',strtotime($startTime));
if(date('Ynd',strtotime($startTime)) == date('Ynd',strtotime($endTime))){
$str .= " and day = ".date('d',strtotime($startTime));
}else{
$str .= " and log_date between '$startTime' and '$endTime' ";
}
}else{
$str .= " and log_date between '$startTime' and '$endTime' ";
}
}else{
$str = " where log_date between '$startTime' and '$endTime' ";
}
不管是用substr截取前4位,還是date('Y'),你都是php的執行而已,php這點時差忽略不記,最終得到的sql是一樣的,並不會影響到資料庫的查詢效率。
你應該要貼出需要執行的sql語句來讓大家看看是否能再最佳化
索引和表格結構優化了嗎,如果沒有,先優化一下會提高不少速度的,不然就考慮拆表啥的吧。
我覺得你應該試試直接寫年份搜尋 看看是否有效能上的 提升。這樣的話 從前台直接傳你要的值就好了
對PHP不是很熟悉,但如果是資料庫資料量大,應該檢查查詢語句建立索引進行最佳化。
把sql語句貼一下,加索引吧!
這兩種執行效率沒有任何改變,php只是拼接了sql語句而已,應該想辦法從資料庫或sql語句上優化;