Since the column is calculated in the select, there is no way to have it included in your where clause. What you can do is materialize that resultset, then you can query it. Something like:
Code:
select percent_score
from (SELECT ROUND((correct/completed) * 100, 2) AS percent_score
FROM records WHERE member_id=10) as a
where percent_score > 50.00;
Dave