Get invaluable Interview and Career Tips delivered directly to your inbox. Get your news alert set up today, Once you confirm your Email subscription, you will be able to download Job Inteview Questions Ebook . Please contact me if you there is any issue with the download.
MySql Query problem
With table A I fired a query to get a count, and a query with table B to get a count.
now I want total of both count.
But I want to this all in one query.
Example:- I fired tqo queries as-
1- select DATE(Today_DATE), count(1) from table DAY1 group by DATE(Today_DATE);
2- Select DATE(Yesturday_DATE), count(1) from table DAY2 group by DATE(Yesturday_DATE);
Here both table give separate counts and we can add these count for single result,
But I want all this work in a single query
Profile Answers by GAUTAMJANGRA Questions by GAUTAMJANGRA
Questions by GAUTAMJANGRA answers by GAUTAMJANGRA
Related Answered Questions
Related Open Questions