difference between phpmyadmin and php PDO

General Tech Bugs & Fixes 2 years ago

0 1 0 0 0 tuteeHUB earn credit +10 pts

5 Star Rating 1 Rating

Posted on 16 Aug 2022, this text provides information on Bugs & Fixes related to General Tech. Please note that while accuracy is prioritized, the data presented might not be entirely correct or up-to-date. This information is offered for general knowledge and informational purposes only, and should not be considered as a substitute for professional advice.

Take Quiz To Earn Credits!

Turn Your Knowledge into Earnings.

tuteehub_quiz

Answers (1)

Post Answer
profilepic.png
manpreet Tuteehub forum best answer Best Answer 2 years ago

 

I'm running a query in Phpmyadmin and also execute the same query with php PDO but results are not equal. What could be wrong ? This is query :

SELECT dim_date_key as date ,dim_jdate_key as jdate, SUM(val_call_counts) as count
FROM `fact_j_service_location_table_ts` 
WHERE `dim_time_stamp` >= '1426451400'
AND `dim_time_stamp` < '1427311800' 
AND dim_service_id  = 2  
GROUP BY dim_date_key  
LIMIT 0,10;

phpmyadmin">phpmyadmin :

date        jdate       count   
20150316    13931225    5711    
20150317    13931226    6170    
20150318    13931227    7244    
20150319    13931228    7825    
20150320    13931229    6261    
20150321    13940101    4622    
20150322    13940102    4513    
20150323    13940103    4671    

but php returns :

20150316    13931225    6295    
20150317    13931226    6170    
20150318    13931227    7244    
20150319    13931228    14170   
20150320    13931229    6261    
20150321    13940101    4622    
20150322    13940102    16879   
20150323    13940103    4671 
0 views
0 shares

No matter what stage you're at in your education or career, TuteeHub will help you reach the next level that you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice sessions to improve your knowledge and scores.