I have written a query to fetch a time internal:
select *, (Time + interval '2012-12-18 13:36:47' minute) from chatnotiservice;
Is it possible to name the (Time + interval '2012-12-18 13:36:47' minute) column?
|
I have written a query to fetch a time internal:
Is it possible to name the |
||||
|
|
|
Use
If you actually want to name the column after the date operation you're performing (your question isn't clear), you can do it by enclosing it in backticks. For example:
I suspect what you mean is the following:
|
|||
|
|