Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
create table test_timestamps
( id integer not null primary key auto_increment
, foo varchar(99)
, mystamp timestamp
);
insert into test_timestamps (foo) values
('Curly'),('Larry'),('Moe');
insert into test_timestamps (foo,mystamp) values
('Shemp','1991-01-01')
,('Joe', '1992-02-02')
,('Curly Joe','1993-03-03');
select id
, mystamp
, day(mystamp) as d
, month(mystamp) as m
, year(mystamp) as y
, dayofweek(mystamp) as dw
, dayofyear(mystamp) as dy
from test_timestamps