I have the following query
select main_cat_name,cat_url from mf_main order by main_cat_name
This returns whole data of my table.Now i want to have count of the total rows of this table.I can do it using another query but how can i use them in one single query???
I want two data ONE :- the rows of the table TWO:- the count
how can i have that in one single query
I tried this but it gives correct count but displays only first row of the table :
select count(cat_id),main_cat_name,cat_url from mf_main order by main_cat_name
You can try with Group By like:
Right solution i hope:
This is what you want:)
If you use mysql u have “as” like i did. For others db may be without as (like oracle)