Ver código fonte

hitting limit on rows in app

now showing only latest 5,000
Jad Meouchy 9 anos atrás
pai
commit
2bc6c76d8e
1 arquivos alterados com 2 adições e 1 exclusões
  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
 				WHERE WEEK(date_processed) = :week_number
 			)
 			)
 		) " : "") .
 		) " : "") .
-		"LIMIT 5000";
+		"ORDER BY date_processed DESC
+		LIMIT 5000";
 
 
 	$stmt = $dbh->prepare($sql);
 	$stmt = $dbh->prepare($sql);