thank you for help.
this is the output, but if you have other suggestions to improve the output are welcome... 
Code:
mysql> SELECT
SUM(
IF (I_speak_only_English = "N", 1, 0)
) AS `I_speak_only_English NO`,
SUM(
IF (I_speak_only_English = "Y", 1, 0)
) AS `I_speak_only_English YES`,
COUNT(*) AS `total`
FROM
tbl_poll;
+-------------------------+--------------------------+-------+
| I_speak_only_English NO | I_speak_only_English YES | total |
+-------------------------+--------------------------+-------+
| 16 | 3 | 19|
+-------------------------+--------------------------+-------+
1 row in set
Bookmarks