What timestamp types are available in MySQL, SQL Server, and Oracle?
replies(5):
Out of these, 'TIMESTAMP' and 'TIMESTAMP WITH TIME ZONE' do exactly what you'd expect without needing a big tutorial.
'DATE' is a 'TIMESTAMP' that can't store fractional seconds.
And 'TIMESTAMP WITH LOCAL TIMEZONE' is an unmitigated footgun that you'll probably misuse.