We use the CAST() function to show the timestamp as a human-readable time and date.
SELECT
rating,
CAST(timeRecorded as timestamp)
FROM
movieRatings;
We use the CAST() function to show the timestamp as a human-readable time and date.
SELECT
rating,
CAST(timeRecorded as timestamp)
FROM
movieRatings;