hi,
if you just want a total then something like the following should work.
select count(*) as total from tablename where question like = '%phone%';
this will give you a total # of rows found where question has a keyword of phones.
You can also do select count(*) as total from tablename;
this will give you the total number of rows for that table;
i assume you are using MySQL if you are using a differient database you might have to change the quiry a little in the "where like = '%phones%'" part.
thanks, and i hope this helps,
- Justin