![]() |
query question
how to adapt the fragment of code below to show:
a) Two columns - the Filipino Population and the Total Population b) The Filipino Population as a percentage of the total population SELECT DISTINCTROW POPDATA.CITYNUM, COUNT (*) FROM POPDATA WHERE POPDATA.ANCNUMBER=720 GROUP BY POPDATA. CITYNUM ORDER BY COUNT (*) DESC; |
Re: query question
Modify the SQL as given below:
Code:
SELECT DISTINCTROW POPDATA.CITYNUM, |
| All times are GMT +5.5. The time now is 18:11. |