浏览代码

hitting limit on rows in app

now showing only latest 5,000
Jad Meouchy 9 年之前
父节点
当前提交
2bc6c76d8e
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      db.php

+ 2 - 1
db.php

@@ -169,7 +169,8 @@ function getRowsByCompany($id_company, $week_number = null)
 				WHERE WEEK(date_processed) = :week_number
 			)
 		) " : "") .
-		"LIMIT 5000";
+		"ORDER BY date_processed DESC
+		LIMIT 5000";
 
 	$stmt = $dbh->prepare($sql);