Having database servers on both SQL Server and Oracle Server,
I couldn't find any homogeneous answer for adding time to a date.
What I would do on SQL Server:
select dateadd(minute, 1, CreationDate) from comments
and on Oracle Server (even though this isn't a pretty solution):
select CreationDate + (1/1440) from comments
1440 being the minutes in a day.
Is there any solution that would work on both servers?
creationdate + interval '1' minute(which works in Oracle)