I want to add text to sql select,
I can do it:
SELECT (1328724983-time)/60/60 AS status FROM voting WHERE account = 'ThElitEyeS' AND vid = 1
This will show the remaining time.
What I would like to do is:
SELECT 'Please try after' + (1328724983-time)/60/60 AS status FROM voting WHERE account = 'ThElitEyeS' AND vid = 1
Is there any way to do this?
source share