Returns the timestamp.
Category: | Date and Time |
Returned data type: | timestamp |
specifies the date.
specifies the time.
specifies the year.
specifies the month.
specifies the day.
specifies the hours.
specifies the minutes.
specifies the seconds.
Statements
|
Results
|
---|---|
select maketimestamp(date '2013-10-30', time '10:39:10'); |
30OCT2013:10:39:10 |
select maketimestamp(2013,10,30,13,39,10); |
30OCT2013:13:39:10 |
select maketimestamp(makedate(2013, 10, 30), maketime(13, 39, 10)); |
30OCT2013:13:39:10 |