I am querying a database as:
SELECT SUM(Hours)
from User
where surname = 'johnson';
Whenever I run it, as you know it will show selected Column with the name SUM(Hours).
Question:
Is there any way that I can "rename" it without altering the database table?